Skip to content

Commit bbea002

Browse files
authored
Merge branch 'main' into feat/ditch-argocd-and-argo-helm-fork
2 parents 23b3c3a + c522b35 commit bbea002

File tree

3 files changed

+61
-12
lines changed

3 files changed

+61
-12
lines changed

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

Lines changed: 52 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -487,6 +487,8 @@ spec:
487487
type: string
488488
healthMessage:
489489
type: string
490+
revision:
491+
type: string
490492
sync:
491493
description: SyncStatusCode is a type which represents
492494
possible comparison results
@@ -500,11 +502,29 @@ spec:
500502
- healthMessage
501503
- sync
502504
type: object
503-
commitSha:
504-
maxLength: 40
505-
minLength: 7
506-
pattern: (^[A-Fa-f0-9]+$|^<any-commit>$)
507-
type: string
505+
commitInfo:
506+
properties:
507+
commitAuthorId:
508+
properties:
509+
email:
510+
type: string
511+
username:
512+
type: string
513+
required:
514+
- email
515+
- username
516+
type: object
517+
commitDate:
518+
format: date-time
519+
type: string
520+
commitMessage:
521+
type: string
522+
commitSha:
523+
maxLength: 40
524+
minLength: 7
525+
pattern: (^[A-Fa-f0-9]+$|^<any-commit>$)
526+
type: string
527+
type: object
508528
phase:
509529
description: PromoteAppWithCommitPhase
510530
enum:
@@ -525,6 +545,8 @@ spec:
525545
type: string
526546
healthMessage:
527547
type: string
548+
revision:
549+
type: string
528550
sync:
529551
description: SyncStatusCode is a type which represents
530552
possible comparison results
@@ -538,6 +560,29 @@ spec:
538560
- healthMessage
539561
- sync
540562
type: object
563+
commitInfo:
564+
properties:
565+
commitAuthorId:
566+
properties:
567+
email:
568+
type: string
569+
username:
570+
type: string
571+
required:
572+
- email
573+
- username
574+
type: object
575+
commitDate:
576+
format: date-time
577+
type: string
578+
commitMessage:
579+
type: string
580+
commitSha:
581+
maxLength: 40
582+
minLength: 7
583+
pattern: (^[A-Fa-f0-9]+$|^<any-commit>$)
584+
type: string
585+
type: object
541586
phase:
542587
description: PromoteAppWithPRPhase
543588
enum:
@@ -613,6 +658,8 @@ spec:
613658
type: string
614659
healthMessage:
615660
type: string
661+
revision:
662+
type: string
616663
sync:
617664
description: SyncStatusCode is a type which represents
618665
possible comparison results

charts/gitops-runtime/values.yaml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ global:
4949
cluster: https://kubernetes.default.svc
5050
# -- Defines whether this is a Codefresh hosted runtime. Should not be changed.
5151
codefreshHosted: false
52+
# -- Defines if runtime is namespace scoped. Required for running multiple runtimes in the same cluster
53+
singleNamespace: false
5254
# -- Ingress settings
5355
ingress:
5456
# -- if set to true, the pre-install hook will validate the existance of appropriate values, but *will not* attempt to make a web request to the ingress host
@@ -146,7 +148,7 @@ global:
146148
image:
147149
registry: quay.io
148150
repository: codefresh/cf-argocd-extras
149-
tag: e746a97
151+
tag: d4fefcb
150152
nodeSelector: {}
151153
tolerations: []
152154
affinity: {}
@@ -248,7 +250,7 @@ argo-cd:
248250
# Argo Events
249251
#-----------------------------------------------------------------------------------------------------------------------
250252
argo-events:
251-
enabled: false
253+
enabled: true
252254
fullnameOverride: argo-events
253255
crds:
254256
install: false
@@ -608,7 +610,7 @@ gitops-operator:
608610
# -- defaults
609611
registry: quay.io
610612
repository: codefresh/codefresh-gitops-operator
611-
tag: "6881890"
613+
tag: "2784cd5"
612614
env:
613615
GITOPS_OPERATOR_VERSION: 0.11.1
614616
serviceAccount:
@@ -638,7 +640,7 @@ argo-gateway:
638640
image:
639641
registry: quay.io
640642
repository: codefresh/cf-argocd-extras
641-
tag: e746a97
643+
tag: d4fefcb
642644
nodeSelector: {}
643645
tolerations: []
644646
affinity: {}

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)