Skip to content

Commit

Permalink
image.pullSecrets override workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
fanny-jiang committed Dec 27, 2024
1 parent 08c1c83 commit 3f8fdb0
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 2 deletions.
3 changes: 1 addition & 2 deletions test/e2e/common/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@ var (
DdaMinimalPath = filepath.Join(ManifestsPath, "datadog-agent-minimum.yaml")
ManifestsPath = filepath.Join(ProjectRootPath, "test/e2e/manifests/new_manifests")

timeout int64 = 60
ProjectRootPath = projectRoot()
ProjectRootPath = projectRoot()
)

const (
Expand Down
13 changes: 13 additions & 0 deletions test/e2e/manifests/new_manifests/datadog-agent-ccr-enabled.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,16 @@ spec:
enabled: true
logCollection:
enabled: true
override: # todo: remove this override when https://github.com/DataDog/test-infra-definitions/pull/1327 is merged
nodeAgent:
image:
pullSecrets:
- name: registry-credentials
clusterAgent:
image:
pullSecrets:
- name: registry-credentials
clusterChecksRunner:
image:
pullSecrets:
- name: registry-credentials
13 changes: 13 additions & 0 deletions test/e2e/manifests/new_manifests/datadog-agent-logs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,16 @@ spec:
containerCollectAll: true
liveContainerCollection:
enabled: true
override: # todo: remove this override when https://github.com/DataDog/test-infra-definitions/pull/1327 is merged
nodeAgent:
image:
pullSecrets:
- name: registry-credentials
clusterAgent:
image:
pullSecrets:
- name: registry-credentials
clusterChecksRunner:
image:
pullSecrets:
- name: registry-credentials
13 changes: 13 additions & 0 deletions test/e2e/manifests/new_manifests/datadog-agent-minimum.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,16 @@ spec:
global:
kubelet:
tlsVerify: false
override: # todo: remove this override when https://github.com/DataDog/test-infra-definitions/pull/1327 is merged
nodeAgent:
image:
pullSecrets:
- name: registry-credentials
clusterAgent:
image:
pullSecrets:
- name: registry-credentials
clusterChecksRunner:
image:
pullSecrets:
- name: registry-credentials

0 comments on commit 3f8fdb0

Please sign in to comment.