Skip to content
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 .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ jobs:
args=()
if [ -z "$VALUES" ]; then
args+=(
"--set" "deployment.image.repository=registry/example-image"
"--set" "deployment.image.repository=example-registry/example-image"
"--set" "deployment.image.tag=example-tag"
)
else
Expand Down
10 changes: 5 additions & 5 deletions application/ci/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ deployment:
- bar.remote
initContainers:
init-container:
image: registry/example-image:example-tag
image: example-registry/example-image:example-tag
imagePullPolicy: IfNotPresent
command: ["/bin/sh"]
resources:
Expand Down Expand Up @@ -115,7 +115,7 @@ deployment:
- ssd
automountServiceAccountToken: false
image:
repository: registry/example-image
repository: example-registry/example-image
tag: example-tag
pullPolicy: IfNotPresent
startupProbe:
Expand Down Expand Up @@ -173,7 +173,7 @@ deployment:
enabled: false
additionalContainers:
- name: sidecar-container
image: registry/example-image:example-tag
image: example-registry/example-image:example-tag
imagePullPolicy: IfNotPresent
command: ["/bin/sh", "-c", "sleep 3600"]
securityContext:
Expand Down Expand Up @@ -413,7 +413,7 @@ cronJob:
imagePullSecrets:
- name: nexus-secret
image:
repository: registry/example-image
repository: example-registry/example-image
tag: example-tag
env:
KEY:
Expand Down Expand Up @@ -466,7 +466,7 @@ job:
imagePullSecrets:
- name: nexus-secret
image:
repository: registry/example-image
repository: example-registry/example-image
tag: example-tag@sha256:example-digest
env:
KEY:
Expand Down
10 changes: 5 additions & 5 deletions application/tests/__snapshot__/common_test.yaml.snap
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ should match snapshot:
- secretRef:
name: my-existing-secret
optional: false
image: registry/example-image:example-tag
image: example-registry/example-image:example-tag
name: db-migration
resources:
limits:
Expand Down Expand Up @@ -421,7 +421,7 @@ should match snapshot:
- configMapRef:
name: application-my-configmap
optional: false
image: registry/example-image:example-tag
image: example-registry/example-image:example-tag
imagePullPolicy: IfNotPresent
lifecycle:
preStop:
Expand Down Expand Up @@ -492,7 +492,7 @@ should match snapshot:
- /bin/sh
- -c
- sleep 3600
image: registry/example-image:example-tag
image: example-registry/example-image:example-tag
imagePullPolicy: IfNotPresent
livenessProbe:
exec:
Expand Down Expand Up @@ -539,7 +539,7 @@ should match snapshot:
initContainers:
- command:
- /bin/sh
image: registry/example-image:example-tag
image: example-registry/example-image:example-tag
imagePullPolicy: IfNotPresent
name: init-container
resources:
Expand Down Expand Up @@ -1405,7 +1405,7 @@ should match snapshot:
- secretRef:
name: my-existing-secret
optional: false
image: registry/example-image:example-tag@sha256:example-digest
image: example-registry/example-image:example-tag@sha256:example-digest
name: db-migration
resources:
limits:
Expand Down
Loading