Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: rename sidecar image in tests #634

Merged
merged 1 commit into from
Dec 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ login-ecr:

.PHONY: e2e
e2e: IMG="registry.localhost:5000/sumologic/tailing-sidecar-operator:test"
e2e: TAILING_SIDECAR_IMG = "registry.localhost:5000/sumologic/tailing-sidecar:test"
e2e: TAILING_SIDECAR_IMG = "registry.localhost:5000/sumologic/sidecar:test"
e2e:
$(MAKE) -C ./sidecar/$(TAILING_SIDECAR) build-test-image TAG=$(TAILING_SIDECAR_IMG)
$(MAKE) -C ./operator docker-build IMG=$(IMG) TAILING_SIDECAR_IMG=$(TAILING_SIDECAR_IMG)
Expand Down
2 changes: 1 addition & 1 deletion helm/tests/values.withCertManager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ operator:

sidecar:
image:
repository: registry.localhost:5000/sumologic/tailing-sidecar
repository: registry.localhost:5000/sumologic/sidecar
tag: test
resources:
limits:
Expand Down
2 changes: 1 addition & 1 deletion helm/tests/values.withFluentBitCustomConfiguration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ operator:

sidecar:
image:
repository: registry.localhost:5000/sumologic/tailing-sidecar
repository: registry.localhost:5000/sumologic/sidecar
tag: test

resources:
Expand Down
2 changes: 1 addition & 1 deletion helm/tests/values.withOtelcolCustomConfiguration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ operator:

sidecar:
image:
repository: registry.localhost:5000/sumologic/tailing-sidecar
repository: registry.localhost:5000/sumologic/sidecar
tag: test

resources:
Expand Down
2 changes: 1 addition & 1 deletion helm/tests/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ operator:

sidecar:
image:
repository: registry.localhost:5000/sumologic/tailing-sidecar
repository: registry.localhost:5000/sumologic/sidecar
tag: test

resources:
Expand Down
2 changes: 1 addition & 1 deletion kuttl-test-helm-certmanager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ startKIND: true
kindNodeCache: true
kindContainers:
- registry.localhost:5000/sumologic/tailing-sidecar-operator:test
- registry.localhost:5000/sumologic/tailing-sidecar:test
- registry.localhost:5000/sumologic/sidecar:test
commands:
- command: make -C ./operator deploy-cert-manager
- command: helm upgrade --install test-release ./helm/tailing-sidecar-operator -f ./helm/tests/values.withCertManager.yaml -n tailing-sidecar-system --create-namespace
Expand Down
2 changes: 1 addition & 1 deletion kuttl-test-helm-fluentbit-custom-configuration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ startKIND: true
kindNodeCache: true
kindContainers:
- registry.localhost:5000/sumologic/tailing-sidecar-operator:test
- registry.localhost:5000/sumologic/tailing-sidecar:test
- registry.localhost:5000/sumologic/sidecar:test
commands:
- command: helm upgrade --install test-release ./helm/tailing-sidecar-operator -f ./helm/tests/values.withFluentBitCustomConfiguration.yaml -n tailing-sidecar-system --create-namespace
- command: make e2e-wait-until-operator-ready
2 changes: 1 addition & 1 deletion kuttl-test-helm-otelcol-custom-configuration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ startKIND: true
kindNodeCache: true
kindContainers:
- registry.localhost:5000/sumologic/tailing-sidecar-operator:test
- registry.localhost:5000/sumologic/tailing-sidecar:test
- registry.localhost:5000/sumologic/sidecar:test
commands:
- command: helm upgrade --install test-release ./helm/tailing-sidecar-operator -f ./helm/tests/values.withOtelcolCustomConfiguration.yaml -n tailing-sidecar-system --create-namespace
- command: make e2e-wait-until-operator-ready
2 changes: 1 addition & 1 deletion kuttl-test-helm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ startKIND: true
kindNodeCache: true
kindContainers:
- registry.localhost:5000/sumologic/tailing-sidecar-operator:test
- registry.localhost:5000/sumologic/tailing-sidecar:test
- registry.localhost:5000/sumologic/sidecar:test
commands:
- command: helm upgrade --install test-release ./helm/tailing-sidecar-operator -f ./helm/tests/values.yaml -n tailing-sidecar-system --create-namespace

Expand Down
4 changes: 2 additions & 2 deletions kuttl-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ startKIND: true
kindNodeCache: true
kindContainers:
- registry.localhost:5000/sumologic/tailing-sidecar-operator:test
- registry.localhost:5000/sumologic/tailing-sidecar:test
- registry.localhost:5000/sumologic/sidecar:test
commands:
- command: make -C ./operator deploy-cert-manager
- command: make -C ./operator deploy IMG="registry.localhost:5000/sumologic/tailing-sidecar-operator:test" TAILING_SIDECAR_IMG="registry.localhost:5000/sumologic/tailing-sidecar:test"
- command: make -C ./operator deploy IMG="registry.localhost:5000/sumologic/tailing-sidecar-operator:test" TAILING_SIDECAR_IMG="registry.localhost:5000/sumologic/sidecar:test"
- command: make e2e-wait-until-operator-ready
Loading