Skip to content

Commit

Permalink
use image v1.0.3 until new image is available
Browse files Browse the repository at this point in the history
  • Loading branch information
fanny-jiang authored and levan-m committed Jan 5, 2024
1 parent 6771e7b commit 7f26cb8
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion charts/datadog-operator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
| fullnameOverride | string | `""` | |
| image.pullPolicy | string | `"IfNotPresent"` | Define the pullPolicy for Datadog Operator image |
| image.repository | string | `"709825985650.dkr.ecr.us-east-1.amazonaws.com/datadog/operator"` | Repository to use for Datadog Operator image |
| image.tag | string | `"1.3.0"` | Define the Datadog Operator version to use |
| image.tag | string | `"1.0.3"` | Define the Datadog Operator version to use |
| imagePullSecrets | list | `[]` | Datadog Operator repository pullSecret (ex: specify docker registry credentials) |
| installCRDs | bool | `true` | Set to true to deploy the Datadog's CRDs |
| logLevel | string | `"info"` | Set Datadog Operator log level (debug, info, error, panic, fatal) |
Expand Down
2 changes: 1 addition & 1 deletion charts/datadog-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ image:
# image.repository -- Repository to use for Datadog Operator image
repository: 709825985650.dkr.ecr.us-east-1.amazonaws.com/datadog/operator
# image.tag -- Define the Datadog Operator version to use
tag: 1.3.0
tag: 1.0.3
# image.pullPolicy -- Define the pullPolicy for Datadog Operator image
pullPolicy: IfNotPresent
# imagePullSecrets -- Datadog Operator repository pullSecret (ex: specify docker registry credentials)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ spec:
serviceAccountName: datadog-operator
containers:
- name: datadog-operator
image: "gcr.io/datadoghq/operator:1.3.0"
image: "709825985650.dkr.ecr.us-east-1.amazonaws.com/datadog/operator:1.0.3"
imagePullPolicy: IfNotPresent
env:
- name: WATCH_NAMESPACE
Expand All @@ -56,7 +56,6 @@ spec:
- "-maximumGoroutines=400"
- "-datadogMonitorEnabled=false"
- "-datadogAgentEnabled=true"
- "-datadogSLOEnabled=false"
ports:
- name: metrics
containerPort: 8383
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ spec:
serviceAccountName: datadog-operator
containers:
- name: datadog-operator
image: "gcr.io/datadoghq/operator:1.3.0"
image: "709825985650.dkr.ecr.us-east-1.amazonaws.com/datadog/operator:1.0.3"
imagePullPolicy: IfNotPresent
env:
- name: WATCH_NAMESPACE
Expand Down
2 changes: 1 addition & 1 deletion test/datadog-operator/operator_deployment_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ func verifyDeployment(t *testing.T, manifest string) {
assert.Equal(t, 1, len(deployment.Spec.Template.Spec.Containers))
operatorContainer := deployment.Spec.Template.Spec.Containers[0]
assert.Equal(t, v1.PullPolicy("IfNotPresent"), operatorContainer.ImagePullPolicy)
assert.Equal(t, "gcr.io/datadoghq/operator:1.3.0", operatorContainer.Image)
assert.Equal(t, "709825985650.dkr.ecr.us-east-1.amazonaws.com/datadog/operator:1.0.3", operatorContainer.Image)
assert.Contains(t, operatorContainer.Args, "-webhookEnabled=false")
}

Expand Down

0 comments on commit 7f26cb8

Please sign in to comment.