Closed. This question is not about programming or software development. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 6 months ago.
Improve this question
While provisioning a Kubernetes cluster using kubeadm, I get my nodes tagged as "none".I would like to know if there is an option to add a Role name manually for the node.
You can label the node by kubectl label node <name> key=value
Related
Closed. This question is not about programming or software development. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 5 months ago.
The community is reviewing whether to reopen this question as of 12 hours ago.
Improve this question
I'm trying to manage my cluster objects declaratively and I'm having problems automatically deleting objects whose resources' files were removed.
I know there is the apply --prune option but that doesn't work without the last-applied-configuration annotation (here), and because I'm working in SSA(server-side) mode this annotation is omitted.
So I was wondering what's the best way to, declaratively, automatically delete objects from my cluster?
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 1 year ago.
Improve this question
I’m new to creating k8s clusters and have want to try it at home. Master would be x86-64, then I have a number of small arm based systems (armv7, armv8, etc.). Can I hook all of these up into a single cluster use kubeadm?
Yes, you can have multiple architectures of Nodes in a single cluster. kubeadm supports multiple architectures since 1.12. However, you will have to either use multi-arch images or build separate architecture-specific images for each architecture when deploying workloads.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
I'm trying to make a Kubernetes multi-cluster, and I need a unique value to distinguish between cluster.
Does Kubernetes provide a UID to distinguish each cluster?
If not, is the best way to separate each cluster by the UID of the kube-system namespace?
if you have multi cluster and in each cluster you have multi user and namespace, and you want to handle switching between them, it is better to use kubernetes contexts, https://kubernetes.io/docs/tasks/access-application-cluster/configure-access-multiple-clusters/
if you just need something unique about cluster, use certificate authority information(ca.crt or ca.key in /etc/kubernetes/pki/ directory). but be careful those files should be secured
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
Is that possible to have IG in another account? We need to implement master multiaccount : 2 masters in 1 account and third master in second account. Is that possible from kops side?
You might be able to use kops terraform support in order to achieve that, but you'll have to perform some changes to the manifest.
Going down this path will probably remove a lot of the benefits for using kops, so there should be very good motives to implement such architecture.
Using kops alone will not allow this use case since it uses a single set of AWS credentials per cluster created.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 3 years ago.
Improve this question
I'm trying learn etcd cluster and encountered "Bootstrapping an etcd cluster". I looked for online explanation but couldn't find any. Can anyone give explanation?
Kubernetes components are stateless and needs a data store to store cluster state. Bootstrapping etcd cluster means setting up ETCD cluster to store kubernetes components,deployments and other objects data