Skip to content

Commit d9cad31

Browse files
authored
Merge branch 'main' into chore/bump-app-proxy
2 parents f2f7522 + cca4921 commit d9cad31

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

CODEOWNERS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,6 @@
55
# any change to the chart should go through devops
66
/charts/gitops-runtime/templates @codefresh-io/DevOps
77
/charts/gitops-runtime/tests @codefresh-io/DevOps
8+
9+
# gitops operator crd changes can be approved by some other people
10+
/charts/gitops-runtime/templates/_components/gitops-operator/crds @codefresh-io/DevOps @dmaizel @eti-codefresh @chen-keinan @scme0

charts/gitops-runtime/templates/_components/gitops-operator/crds/promotiontasks.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,7 @@ spec:
522522
commitSha:
523523
maxLength: 40
524524
minLength: 7
525-
pattern: (^[A-Fa-f0-9]+$|^<any-commit>$)
525+
pattern: (^[A-Fa-f0-9]+$|^<no-changes>$)
526526
type: string
527527
type: object
528528
phase:
@@ -580,7 +580,7 @@ spec:
580580
commitSha:
581581
maxLength: 40
582582
minLength: 7
583-
pattern: (^[A-Fa-f0-9]+$|^<any-commit>$)
583+
pattern: (^[A-Fa-f0-9]+$|^<no-changes>$)
584584
type: string
585585
type: object
586586
phase:

charts/gitops-runtime/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ argo-cd:
276276
# Argo Events
277277
#-----------------------------------------------------------------------------------------------------------------------
278278
argo-events:
279-
enabled: false
279+
enabled: true
280280
fullnameOverride: argo-events
281281
crds:
282282
install: false
@@ -636,7 +636,7 @@ gitops-operator:
636636
# -- defaults
637637
registry: quay.io
638638
repository: codefresh/codefresh-gitops-operator
639-
tag: "2784cd5"
639+
tag: "32dce59"
640640
env:
641641
GITOPS_OPERATOR_VERSION: 0.11.1
642642
serviceAccount:

installer-image/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ RUN go install github.com/davidrjonas/semver-cli@latest \
44
&& cp $GOPATH/bin/semver-cli /usr/local/bin/
55

66
#bookworm-slim
7-
FROM debian:12.11-slim
7+
FROM debian:13-slim
88

99
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
1010

11-
ARG CF_CLI_VERSION=v0.2.12
11+
ARG CF_CLI_VERSION=v0.2.14
1212
ARG TARGETARCH
1313

1414
RUN apt-get update && apt-get install curl jq -y
@@ -17,6 +17,6 @@ COPY --from=go-build /usr/local/bin/semver-cli /usr/local/bin/semver-cli
1717

1818
COPY --from=bitnamilegacy/kubectl:1.33.4 /opt/bitnami/kubectl/bin/kubectl /usr/local/bin/
1919

20-
RUN adduser --shell /bin/bash codefresh
20+
RUN useradd -m -s /bin/bash codefresh
2121
USER codefresh
2222
WORKDIR /home/codefresh

0 commit comments

Comments
 (0)