Skip to content

Commit 9c2f0e3

Browse files
committed
Merge branch 'feature/MK8S-143-add-oauth2-proxy-to-the-buildchain' into q/133.0
2 parents ff83f83 + 08f81d4 commit 9c2f0e3

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

buildchain/buildchain/constants.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
PROMETHEUS_REPOSITORY: str = "quay.io/prometheus"
3333
THANOS_REPOSITORY: str = "quay.io/thanos"
3434
CERT_MANAGER_REPOSITORY: str = "quay.io/jetstack"
35+
OAUTH2_PROXY_REPOSITORY: str = "quay.io/oauth2-proxy"
3536
SCALITY_REPOSITORY: str = "ghcr.io/scality"
3637

3738
# Paths {{{

buildchain/buildchain/image.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,9 @@ def _local_image(name: str, **kwargs: Any) -> targets.LocalImage:
217217
"cert-manager-cainjector",
218218
"cert-manager-acmesolver",
219219
],
220+
constants.OAUTH2_PROXY_REPOSITORY: [
221+
"oauth2-proxy",
222+
],
220223
constants.SCALITY_REPOSITORY: [
221224
"ui-operator",
222225
"crl-operator",

buildchain/buildchain/versions.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,11 @@ def _version_prefix(version: str, prefix: str = "v") -> str:
196196
version="v1.8.2",
197197
digest="sha256:4032c6d5bfd752342c3e631c2f1de93ba6b86c41db6b167b9a35372c139e7706",
198198
),
199+
Image(
200+
name="oauth2-proxy",
201+
version="v7.14.3",
202+
digest="sha256:68336da945bdaff799262c8d14fb1d1aa9354df5e02b87e0955addc040344618",
203+
),
199204
Image(
200205
name="pause",
201206
version="3.10",

0 commit comments

Comments
 (0)