我设置了一个kubernetes集群。我想向群集添加一个主节点。我的cluser版本是1.17.0。 join命令是什么?我在官方网站上找不到有关该命令的相关文档。
答案 0 :(得分:1)
要加入其他大师,请执行以下步骤:
生成证书密钥
ListView listView; listView = findViewById(R.id.list_view); String[] fruits = new String[5]; fruits[0]="hello"; fruits[1]="hello"; fruits[2]="hello"; fruits[3]="hello"; fruits[4]="hello"; List newList = new ArrayList(Arrays.asList(fruits)); ArrayAdapter arrayAdapter = new ArrayAdapter(this, android.R.layout.simple_list_item_1, newList); listView.setAdapter(arrayAdapter); listView.setOnItemClickListener(new AdapterView.OnItemClickListener() { @Override public void onItemClick(AdapterView parent, View view, int position, long id) { String selectedItem = (String) parent.getItemAtPosition(position); Toast.makeText(DisplayPannel.this, selectedItem, Toast.LENGTH_SHORT).show(); } });
打印加入命令
kubeadm alpha certs certificate-key
在上面的加入命令中添加以下标志
kubeadm token create --print-join-command
命令应如下所示
--control-plane --certificate-key "Certificate-key from step 1"