Skip to content

Commit 377fa62

Browse files
authored
fix(oauth2): pin oauth2-proxy version (#279)
1 parent 44c5e44 commit 377fa62

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

charts/cryostat/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ certificate issuance and rotation.
272272
| --------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------------- |
273273
| `oauth2Proxy.image.repository` | Repository for the OAuth2 Proxy container image | `quay.io/oauth2-proxy/oauth2-proxy` |
274274
| `oauth2Proxy.image.pullPolicy` | Image pull policy for the OAuth2 Proxy container image | `Always` |
275-
| `oauth2Proxy.image.tag` | Tag for the OAuth2 Proxy container image | `latest` |
275+
| `oauth2Proxy.image.tag` | Tag for the OAuth2 Proxy container image | `v7.13.0` |
276276
| `oauth2Proxy.tls.selfSigned.enabled` | Whether a self-signed TLS certificate for oauth2-proxy HTTPS is generated and used | `false` |
277277
| `oauth2Proxy.resources.requests.cpu` | CPU resource request for the OAuth2 Proxy container | `25m` |
278278
| `oauth2Proxy.resources.requests.memory` | Memory resource request for the OAuth2 Proxy container | `64Mi` |

charts/cryostat/tests/cryostat_deployment_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ tests:
6060
value: "quay.io/cryostat/cryostat:4.1.1-snapshot"
6161
- equal:
6262
path: spec.template.spec.containers[?(@.name=='cryostat-authproxy')].image
63-
value: "quay.io/oauth2-proxy/oauth2-proxy:latest"
63+
value: "quay.io/oauth2-proxy/oauth2-proxy:v7.13.0"
6464
- equal:
6565
path: spec.template.spec.containers[?(@.name=='cryostat')].env[?(@.name=='QUARKUS_HTTP_PORT')].value
6666
value: "8181"

charts/cryostat/tests/reports_deployment_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ tests:
6767
path: spec.template.spec.containers[?(@.name=='cryostat-reports-authproxy')]
6868
- equal:
6969
path: spec.template.spec.containers[?(@.name=='cryostat-reports-authproxy')].image
70-
value: "quay.io/oauth2-proxy/oauth2-proxy:latest"
70+
value: "quay.io/oauth2-proxy/oauth2-proxy:v7.13.0"
7171
- equal:
7272
path: spec.template.spec.containers[?(@.name=='cryostat-reports-authproxy')].ports
7373
value:

charts/cryostat/values.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1148,7 +1148,7 @@
11481148
"tag": {
11491149
"type": "string",
11501150
"description": "Tag for the OAuth2 Proxy container image",
1151-
"default": "latest"
1151+
"default": "v7.13.0"
11521152
}
11531153
}
11541154
},

charts/cryostat/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ oauth2Proxy:
469469
## @param oauth2Proxy.image.pullPolicy Image pull policy for the OAuth2 Proxy container image
470470
pullPolicy: Always
471471
## @param oauth2Proxy.image.tag Tag for the OAuth2 Proxy container image
472-
tag: "latest"
472+
tag: "v7.13.0"
473473
tls:
474474
selfSigned:
475475
## @param oauth2Proxy.tls.selfSigned.enabled Whether a self-signed TLS certificate for oauth2-proxy HTTPS is generated and used

0 commit comments

Comments
 (0)