is it possible to add nodes to the Kubernetes cluster created via Kops without changing instance groups? [closed] - kubernetes

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I want to add the node to the Kubernetes cluster created via kops. I know it is possible to do it with a changing number of nodes in the instance group. but I'm looking for different kinds of solutions because I already have some ec2 instances (in same region) and I want to use them as nodes for my Kubernetes cluster.

Related

How can I schedule shutdown of my azure Virtual machine scale set instances using Terraform? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 3 days ago.
Improve this question
I have 2 azure virtual machine scale sets (each with 2 instances) deployed. One is for dev and other for testing.
I would like to schedule shutdown of the testing vmss everyday after working hours inorder to cut costs.
How can this be done via terraform ?
I initially tried using azurerm_dev_test_global_vm_shutdown_schedule, but looks like this works only for vm and not vmss.

Why is it called "Container Registry"? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 1 year ago.
Improve this question
I think the term "Container Registry" is misleading.
AFIAK the registry contains container images, not containers.
Why is it called "Container Registry"?
A container registry is a repository, or collection of repositories, used to store container images for Kubernetes, DevOps, and container-based application development.
The terms Image Registry and Container Registry are synonymous.

How to recovery to different environment using Cassy backup tool? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
I want to know how to recover Scalar DB to another instance using Cassy backup.
Because I need a new instance for tests from the production environment.
There is no direct support in Cassy to load backups that were taken in a cluster to another cluster.
Since Cassy only manages snapshots of Cassandra, you can follow the doc to do it.
For testing, I would recommend dumping some of the data from the current (possibly production) cluster and load it to a new testing cluster.

GKE - Can I change the CNI plugin? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
GKE uses Calico for networking by default. Is there an option to use some other CNI plugin ?
No, GKE does not offer such option, you have to use the provided Calico.

How do I programmatically activate pages to only certain replication agents in AEM? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
How do I programmatically activate pages to only certain replication agents in AEM using Replication API's
AEM provides ReplicationOptions API. This can help selecting the replication agent using public void setFilter(AgentFilter filter).
Agent can be named as per requirement, the API can match exact Agent name in public void setFilter(AgentFilter filter) or regex can be used to match required agents.
Also refer another answer on this