Skip to content

Commit 3e4e28b

Browse files
committed
chore: test again Argo CD 3.1
1 parent 61e5af1 commit 3e4e28b

File tree

6 files changed

+8
-7
lines changed

6 files changed

+8
-7
lines changed

.devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
},
1919
// https://github.com/devcontainers/features/tree/main/src/kubectl-helm-minikube
2020
"ghcr.io/devcontainers/features/kubectl-helm-minikube:1": {
21-
"version": "1.31.7"
21+
"version": "1.31.9"
2222
},
2323
// https://github.com/rio/features/tree/main/src/kustomize
2424
"ghcr.io/rio/features/kustomize:1": {},

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
strategy:
6464
fail-fast: false
6565
matrix:
66-
argocd_version: ["v2.13.5", "v2.14.5", "v3.0.0"]
66+
argocd_version: ["v2.14.5", "v3.0.0", "v3.1.0"]
6767
terraform_version: ["1.4.*"]
6868
steps:
6969
- name: Check out code

.run/Template Go Test.run.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<env name="ARGOCD_AUTH_PASSWORD" value="acceptancetesting" />
1212
<env name="ARGOCD_CONTEXT" value="kind-argocd" />
1313
<env name="USE_TESTCONTAINERS" value="true" />
14-
<env name="K3S_VERSION" value="v1.31.6-k3s1" />
14+
<env name="K3S_VERSION" value="v1.31.9-k3s1" />
1515
<env name="TF_ACC" value="1" />
1616
</envs>
1717
<framework value="gotest" />

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ The following table shows the versions of Argo CD that are tested with each vers
3737

3838
| Provider version | Argo CD versions |
3939
|---|---|
40+
| 7.11 | v2.14, v3.0, v3.1 |
4041
| 7.7 | v2.13, v2.14, v3.0 |
4142
| 7.5 | v2.12, v2.13, v2.14 |
4243
| 7.4 | v2.11, v2.12, v2.13 |

internal/testhelpers/suite.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ func TestMain(m *testing.M) {
2121
envDefaultValue("ARGOCD_SERVER", "127.0.0.1:8080")
2222
envDefaultValue("ARGOCD_INSECURE", "true")
2323
envDefaultValue("USE_TESTCONTAINERS", "true")
24-
envDefaultValue("K3S_VERSION", "v1.31.6-k3s1")
25-
envDefaultValue("ARGOCD_VERSION", "v3.0.0")
24+
envDefaultValue("K3S_VERSION", "v1.31.9-k3s1")
25+
envDefaultValue("ARGOCD_VERSION", "v3.1.0")
2626

2727
if os.Getenv("USE_TESTCONTAINERS") == "true" {
2828
os.Exit(runTestSuite(m))

kind-config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ kind: Cluster
44
name: argocd
55
nodes:
66
- role: control-plane
7-
# It seems that the latest .7 patch release is not available, use latest available one instead
8-
image: kindest/node:v1.31.6
7+
# It seems that the latest .11 patch release is not available, use latest available one instead
8+
image: kindest/node:v1.31.9
99
extraPortMappings:
1010
- containerPort: 30123
1111
hostPort: 8080

0 commit comments

Comments
 (0)