Skip to content

Commit d011f26

Browse files
authored
Updated conformance test image (#1377)
1 parent 660ab85 commit d011f26

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ For our single branch ci_prod, automatically deployed latest yaml with latest ag
394394
```
395395
cd ~/Docker-Provider/test/e2e/src # based on your repo path
396396
docker login <acr> -u <user> -p <pwd> # login to acr
397-
docker build -f ./core/Dockerfile -t <repo>/<imagename>:<imagetag> .
397+
docker build -f ./core/Dockerfile -t <repo>/<imagename>:<imagetag> --build-arg PYTHON_BASE_IMAGE=<referInternalWikiForPythonBaseImage> .
398398
docker push <repo>/<imagename>:<imagetag>
399399
```
400400
3. update existing agentest image tag in e2e-tests.yaml & conformance.yaml with newly built image tag with MCR repo

test/e2e/conformance.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ sonobuoy-config:
33
plugin-name: azure-arc-ci-conformance
44
result-format: junit
55
spec:
6-
image: mcr.microsoft.com/azuremonitor/containerinsights/cidev:ciconftest06272024
6+
image: mcr.microsoft.com/azuremonitor/containerinsights/cidev:ciconftest03212025
77
imagePullPolicy: Always
88
name: plugin
99
resources: {}

test/e2e/e2e-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ data:
104104
- name: AZURE_CLOUD
105105
value: "AZURE_PUBLIC_CLOUD"
106106
# image tag should be updated if new tests being added after this image
107-
image: mcr.microsoft.com/azuremonitor/containerinsights/cidev:ciconftest06272024
107+
image: mcr.microsoft.com/azuremonitor/containerinsights/cidev:ciconftest03212025
108108
imagePullPolicy: IfNotPresent
109109
name: plugin
110110
resources: {}

test/e2e/src/core/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# default value can be found in internal wiki. External can use python 3.6 base image
2-
ARG PYTHON_BASE_IMAGE=
2+
ARG PYTHON_BASE_IMAGE=python:3.6
33
FROM ${PYTHON_BASE_IMAGE}
44

55
RUN pip install --trusted-host pypi.org --trusted-host files.pythonhosted.org pytest pytest-xdist filelock requests kubernetes adal msrestazure

0 commit comments

Comments
 (0)