Eytan Avisror
Eytan Avisror
Hello, Is it possible with current ezmomi library to clone from template and populate custom vApp properties? We are using vApp settings to add an ip address / gateway /...
Currently the s3sink interface panics if s3SinkAccessKeyID / s3SinkSecretAccessKey are not provided. ``` case "s3sink": accessKeyID := viper.GetString("s3SinkAccessKeyID") if accessKeyID == "" { panic("s3 sink specified but s3SinkAccessKeyID not specified")...
Readme mentions one of the goals of this project is `Support for multiple sinks should be configurable`, but looking at the code I don't see that it currently supports using...
In some cases, it may be appropriate to scale nodes vertically, i.e. from m5.xlarge to m5.2xlarge. For example, when we detect better binpacking may occur, or when the IG reaches...
Adds to #197 This feature adds a capability to do draining in parallel via kubectl as a library (not shelling out), prior to termination of instances. This makes the rollingUpgrade...
We recently added AMI label for nodes, we should also add LaunchConfig label. This is especially useful for a user to know that for a given instancegroup, all nodes are...
https://github.com/keikoproj/instance-manager/blob/c0eb25d65856ca1261f70465c56950f4bfc0cdc3/controllers/providers/kubernetes/crd.go#L148-L156 The above logic states - if there is an error in creating a resource, and it already exists - do nothing, or fail if otherwise. If creation is successful...
Looks like LaunchConfig / LaunchTemplate no longer require keypair, we should also make it not required in instance-manager. https://docs.aws.amazon.com/sdk-for-go/api/service/autoscaling/#CreateLaunchConfigurationInput https://docs.aws.amazon.com/sdk-for-go/api/service/ec2/#RequestLaunchTemplateData
Looks like the very first reconcile enters the IG into a Ready state even though the resources are just created and not Ready yet. It should remain in Init state...
Currently, the rollingUpdate strategy implementation is very basic, we should make some basic improvements to it so that it is more useful. - Add node draining - Configurable waits