Skip to content

Commit

Permalink
release 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
reginapizza committed Jul 24, 2024
1 parent c74e459 commit fcb1483
Show file tree
Hide file tree
Showing 20 changed files with 862 additions and 456 deletions.
16 changes: 11 additions & 5 deletions build/util/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Argo CD v2.11.2
FROM quay.io/argoproj/argocd@sha256:fc175461c4669709917705fa84439143cc7c9370798667b33d06c8087d472f3b as argocd
# Argo CD v2.11.5
FROM quay.io/argoproj/argocd@sha256:a39a3dd97da2ff325a06bb4a6ed3e84ccacc297740ec38afa50fb15bda2bf7f0 as argocd

# Final Image
FROM docker.io/library/ubuntu:24.04
Expand All @@ -17,12 +17,18 @@ RUN groupadd -g $ARGOCD_USER_ID argocd && \
apt-get update && \
apt-get dist-upgrade -y && \
apt-get install -y \
git git-lfs tini curl python3-pip gpg tzdata && \
git git-lfs tini curl python3-pip gpg tzdata unzip && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

# Install the AWS CLI
RUN pip3 install awscli
# Create a symlink for python to point to python3
RUN ln -s /usr/bin/python3 /usr/bin/python

# Install AWS CLI v2
RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" && \
unzip awscliv2.zip && \
./aws/install && \
rm -rf awscliv2.zip aws

# Install the Microsoft Azure CLI
RUN curl -sL https://aka.ms/InstallAzureCLIDeb | bash && \
Expand Down
4 changes: 4 additions & 0 deletions bundle.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,14 @@ LABEL operators.operatorframework.io.bundle.metadata.v1=metadata/
LABEL operators.operatorframework.io.bundle.package.v1=argocd-operator
LABEL operators.operatorframework.io.bundle.channels.v1=alpha
<<<<<<< HEAD
<<<<<<< HEAD
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.35.0
=======
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.32.0
>>>>>>> 174bf37 (Generated manifests for 0.11.0 version (#1402))
=======
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.10.0+git
>>>>>>> a58a9d8 (release 0.11.0)
LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1
LABEL operators.operatorframework.io.metrics.project_layout=go.kubebuilder.io/v4

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ kind: Service
metadata:
creationTimestamp: null
labels:
control-plane: argocd-operator
control-plane: controller-manager
name: argocd-operator-controller-manager-metrics-service
spec:
ports:
- name: https
port: 8443
targetPort: 8080
selector:
control-plane: argocd-operator
control-plane: controller-manager
status:
loadBalancer: {}
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ spec:
protocol: TCP
targetPort: 9443
selector:
control-plane: argocd-operator
control-plane: controller-manager
status:
loadBalancer: {}
18 changes: 9 additions & 9 deletions bundle/manifests/argocd-operator.clusterserviceversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -667,8 +667,8 @@ spec:
- urn:alm:descriptor:com.tectonic.ui:fieldGroup:RBAC
- urn:alm:descriptor:com.tectonic.ui:text
- description: 'Policy is CSV containing user-defined RBAC policies and role
definitions. Policy rules are in the form: p, subject, resource, action,
object, effect Role definitions and bindings are in the form: g, subject,
definitions. Policy rules are in the form: p, subject, resource, action,
object, effect Role definitions and bindings are in the form: g, subject,
inherited-subject See https://github.com/argoproj/argo-cd/blob/master/docs/operator-manual/rbac.md
for additional information.'
displayName: Policy
Expand Down Expand Up @@ -1245,8 +1245,8 @@ spec:
- urn:alm:descriptor:com.tectonic.ui:fieldGroup:RBAC
- urn:alm:descriptor:com.tectonic.ui:text
- description: 'Policy is CSV containing user-defined RBAC policies and role
definitions. Policy rules are in the form: p, subject, resource, action,
object, effect Role definitions and bindings are in the form: g, subject,
definitions. Policy rules are in the form: p, subject, resource, action,
object, effect Role definitions and bindings are in the form: g, subject,
inherited-subject See https://github.com/argoproj/argo-cd/blob/master/docs/operator-manual/rbac.md
for additional information.'
displayName: Policy
Expand Down Expand Up @@ -1867,20 +1867,20 @@ spec:
serviceAccountName: argocd-operator-controller-manager
deployments:
- label:
control-plane: argocd-operator
control-plane: controller-manager
name: argocd-operator-controller-manager
spec:
replicas: 1
selector:
matchLabels:
control-plane: argocd-operator
control-plane: controller-manager
strategy: {}
template:
metadata:
annotations:
kubectl.kubernetes.io/default-container: manager
labels:
control-plane: argocd-operator
control-plane: controller-manager
spec:
containers:
- args:
Expand All @@ -1894,7 +1894,7 @@ spec:
fieldPath: metadata.annotations['olm.targetNamespaces']
- name: ENABLE_CONVERSION_WEBHOOK
value: "true"
image: quay.io/argoprojlabs/argocd-operator:v0.11.0
image: quay.io/argoprojlabs/argocd-operator@sha256:80c4c2dd0f582d43c99a7e60597e16ef2e321427a77ca8ecf551278fa5f1ce06
livenessProbe:
httpGet:
path: /healthz
Expand Down Expand Up @@ -1984,7 +1984,7 @@ spec:
maturity: alpha
provider:
name: Argo CD Community
replaces: argocd-operator.v0.10.0
replaces: argocd-operator.v0.10.1
version: 0.11.0
webhookdefinitions:
- admissionReviewVersions:
Expand Down
Loading

0 comments on commit fcb1483

Please sign in to comment.