Ryan Eschinger
Ryan Eschinger
docker.container should have more support for various run options. Some examples of things it is missing: - [ ] labels - [ ] resource constraints (cpu, mem, etc.) - [...
when converge starts a task, there is no visual indication that it is running other than the STARTED log message. This is not ideal for long-running tasks like updating yum...
consider adding wildcard support to `file.mode` module. Example: ``` file.mode "set-binaries-executable" { destination = "{{param `destination`}}/*" mode = "0755" depends = ["task.copy-binaries"] } ```
consider adding a resource to manage 3rd-party package repositories minimal example: ```hcl package.apt-repo "docker" { repo = "deb https://apt.dockerproject.org/repo ubuntu-xenial main" destination = "/etc/apt/sources.list.d/docker.list" update = true state = "present"...
consider adding a resource to manage apt keys for 3rd-party package repositories minimal example: ```hcl package.apt-key "docker" { keyserver = "hkp://p80.pool.sks-keyservers.net:80" keyid = "58118E89F3A912897C070ADBF76221572C52609D" state = "present" } ```
As a resource developer, I'd like to be able to read hcl into a custom type in my Preparer. As an example, the `docker.network` resource supports network settings like ```...
When running under JAR mode, the elasticsearch nodes do not respect the memory limit specified by `--elasticsearchRam`. Mesos tracks the initially launched process (`24037`, in the example below) and always...
Right now, you can specify a custom `mesos-site.xml` via `hdfs.custom-config` in an `options.json` file when installing hdfs (although it currently does not get distributed to slaves - see https://github.com/mesosphere/dcos-hdfs/issues/5). However,...
Figure out what it will take to run kfilt as a kubectl plugin * docs * installation instructions * usage examples * etc. This can be split into multiple issues...
We are using gatekeeper with the automatic certificate management provided by cert-controller. We'd like to be able to configure the duration for certificate validity (and likely lookahead interval) to align...