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

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.

Related

how to automate deployment process by triggering a deployment using a combination of a pipeline name and a release number? [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 5 days ago.
Improve this question
Need automation help for our deployment process by triggering a deployment using a combination of a pipeline name and a release number
our deployment process by triggering a deployment using a combination of a pipeline name and a release number

Using Sbt as BSP Server in Kubernetes [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 1 year ago.
Improve this question
I'm looking for a solution that would enable me to deploy Sbt as a BSP server or any other protocol, on Kubernetes, and use my IDE to work with it via, say, port forwarding.
Is this technically possible? Before going into things like DevSpace or Okteto, I was wondering, if anyone could share their experience trying to do it with SBT Server capability directly.

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.

is it possible to add nodes to the Kubernetes cluster created via Kops without changing instance groups? [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 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.

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