Skip to content

Commit 0fafab1

Browse files
authored
Set default images (#104)
This patch ensures that two environment variables are set for the test-operator that contain the information about which images should be used for testing.
1 parent de723c7 commit 0fafab1

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

config/default/kustomization.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ patchesStrategicMerge:
2929
# If you want your controller-manager to expose the /metrics
3030
# endpoint w/o any authn/z, please comment the following line.
3131
- manager_auth_proxy_patch.yaml
32+
- manager_default_images.yaml
3233

3334

3435

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# This patch inject custom ENV settings to the manager container
2+
# Used to set our default image locations
3+
apiVersion: apps/v1
4+
kind: Deployment
5+
metadata:
6+
name: controller-manager
7+
namespace: system
8+
spec:
9+
template:
10+
spec:
11+
containers:
12+
- name: manager
13+
env:
14+
- name: RELATED_IMAGE_TEMPEST_IMAGE_URL_DEFAULT
15+
value: quay.io/podified-antelope-centos9/openstack-tempest-all:current-podified
16+
- name: RELATED_IMAGE_TOBIKO_IMAGE_URL_DEFAULT
17+
value: quay.io/podified-antelope-centos9/openstack-tobiko:current-podified

0 commit comments

Comments
 (0)