Skip to content

Commit

Permalink
Change default trace value to string
Browse files Browse the repository at this point in the history
  • Loading branch information
teddyphreak committed Jan 14, 2024
1 parent 5b01ff0 commit 4df0641
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.PHONY: all ${MAKECMDGOALS}

MOLECULE_SCENARIO ?= install
MOLECULE_DOCKER_IMAGE ?= ubuntu2004
MOLECULE_DOCKER_IMAGE ?= ubuntu2204
GALAXY_API_KEY ?=
GITHUB_REPOSITORY ?= $$(git config --get remote.origin.url | cut -d: -f 2 | cut -d. -f 1)
GITHUB_ORG = $$(echo ${GITHUB_REPOSITORY} | cut -d/ -f 1)
Expand Down
2 changes: 1 addition & 1 deletion defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ mongos_service_enabled: "{{ mongos_service_state != 'stopped' }}"
mongos_config_file: /etc/mongos.yaml
mongos_config_verbosity: 2
mongos_config_bindip: 127.0.0.1
mongos_config_log_trace: true
mongos_config_log_trace: 'false'
mongos_config_timestamp_format: iso8601-utc
mongos_storage_path: /var/lib/mongodb
mongos_replicaset_config_name: config
Expand Down
16 changes: 8 additions & 8 deletions molecule/hold/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ driver:
platforms:
- name: mongos-hold-mongos01
image: "geerlingguy/docker-${MOLECULE_DOCKER_IMAGE:-ubuntu2004}-ansible:latest"
command: ${MOLECULE_DOCKER_COMMAND:-""}
command: ${MOLECULE_DOCKER_COMMAND:-"/lib/systemd/systemd"}
cgroupns_mode: host
privileged: true
pre_build_image: true
Expand All @@ -22,7 +22,7 @@ platforms:
- mongos
- name: mongos-hold-mongos02
image: "geerlingguy/docker-${MOLECULE_DOCKER_IMAGE:-ubuntu2004}-ansible:latest"
command: ${MOLECULE_DOCKER_COMMAND:-""}
command: ${MOLECULE_DOCKER_COMMAND:-"/lib/systemd/systemd"}
cgroupns_mode: host
privileged: true
pre_build_image: true
Expand All @@ -35,7 +35,7 @@ platforms:
- mongos
- name: mongos-hold-config01
image: "geerlingguy/docker-${MOLECULE_DOCKER_IMAGE:-ubuntu2004}-ansible:latest"
command: ${MOLECULE_DOCKER_COMMAND:-""}
command: ${MOLECULE_DOCKER_COMMAND:-"/lib/systemd/systemd"}
cgroupns_mode: host
privileged: true
pre_build_image: true
Expand All @@ -48,7 +48,7 @@ platforms:
- config
- name: mongos-hold-config02
image: "geerlingguy/docker-${MOLECULE_DOCKER_IMAGE:-ubuntu2004}-ansible:latest"
command: ${MOLECULE_DOCKER_COMMAND:-""}
command: ${MOLECULE_DOCKER_COMMAND:-"/lib/systemd/systemd"}
cgroupns_mode: host
privileged: true
pre_build_image: true
Expand All @@ -61,7 +61,7 @@ platforms:
- config
- name: mongos-hold-config03
image: "geerlingguy/docker-${MOLECULE_DOCKER_IMAGE:-ubuntu2004}-ansible:latest"
command: ${MOLECULE_DOCKER_COMMAND:-""}
command: ${MOLECULE_DOCKER_COMMAND:-"/lib/systemd/systemd"}
cgroupns_mode: host
privileged: true
pre_build_image: true
Expand All @@ -74,7 +74,7 @@ platforms:
- config
- name: mongos-hold-shard01
image: "geerlingguy/docker-${MOLECULE_DOCKER_IMAGE:-ubuntu2004}-ansible:latest"
command: ${MOLECULE_DOCKER_COMMAND:-""}
command: ${MOLECULE_DOCKER_COMMAND:-"/lib/systemd/systemd"}
cgroupns_mode: host
privileged: true
pre_build_image: true
Expand All @@ -87,7 +87,7 @@ platforms:
- shard
- name: mongos-hold-shard02
image: "geerlingguy/docker-${MOLECULE_DOCKER_IMAGE:-ubuntu2004}-ansible:latest"
command: ${MOLECULE_DOCKER_COMMAND:-""}
command: ${MOLECULE_DOCKER_COMMAND:-"/lib/systemd/systemd"}
cgroupns_mode: host
privileged: true
pre_build_image: true
Expand All @@ -100,7 +100,7 @@ platforms:
- shard
- name: mongos-hold-shard03
image: "geerlingguy/docker-${MOLECULE_DOCKER_IMAGE:-ubuntu2004}-ansible:latest"
command: ${MOLECULE_DOCKER_COMMAND:-""}
command: ${MOLECULE_DOCKER_COMMAND:-"/lib/systemd/systemd"}
cgroupns_mode: host
privileged: true
pre_build_image: true
Expand Down
1 change: 0 additions & 1 deletion molecule/install/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,5 @@ provisioner:
mongos_replicaset_config_name: config
mongos_replicaset_shard_name: shard
mongodb_shell: mongosh
mongos_config_bindip: "{{ ansible_default_ipv4.address }}"
verifier:
name: ansible

0 comments on commit 4df0641

Please sign in to comment.