Martin Ahrer
Martin Ahrer
**Description** I'm trying the new Nomad service registry and replacing the consul provider by the nomad provider. Deploying with `levant deploy` produces an error message complaining that the key `provider`...
**No container image exists for arm64 architecture** I'm running a container based build pipeline on arm64 nodes. As no levant image exists for this architecture I'm currently maintaining a very...
Commit [e8ad89ba7a7562d386ce2c5dae30059c1d3c3913](https://github.com/ansible-community/ansible-consul/commit/e8ad89ba7a7562d386ce2c5dae30059c1d3c3913) introduced a new `consul_data_path` default value of "/opt/consul" which was "/var/consul" previously. This breaks several cluster installations. There is certainly a workaround, setting the value back to the...
I'm setting up a consul cluster with 3 nodes. Each node has the following ansible variables set ``` consul_bootstrap_expect: true consul_bootstrap_expect_value: 3 consul_iface: eth1 consul_node_role: server ``` I already had...
I'm using footloose 0.6.3 on Mac OS with the following simple configuration. ``` cluster: name: chaching privateKey: cluster-key machines: - count: 1 spec: image: quay.io/footloose/debian10 name: chachingdev%d portMappings: - containerPort:...
…o Docker 4.3 According to https://docs.docker.com/desktop/mac/release-notes/#bug-fixes-and-minor-changes-1 - Add the following option: --cgroupns=host - Modifies volume option: -v /sys/fs/cgroup:/sys/fs/cgroup:rw. Adds a debian11 image that uses systemd 247
I have a scenario where I want to re-use code from a testset in another testset. The setup is as follows ``` plugins { id 'groovy' id 'idea' id 'org.unbroken-dome.test-sets'...
Like with a copySpec, the `generateDockerCompose` task should offer an option to filter content. copySpec.from (dockerSourceDir, { include '*.yml' filter(ReplaceTokens, tokens: [name: project.name, version: project.version as String, image: docker.name]) })
I have a controller that basically is shown in the swagger UI. However, its response type is not resolved properly. Only the fully qualified class name is shown without the...
When adding @ApiOperation all operations need to be annotated. If only a single @ApiOperation annotation is added, all remaining (non-annotated) API operations will not be included in the documentation.