Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: quay
description: Red Hat Quay Registry Resources
type: application
version: 0.1.2
version: 0.1.3
appVersion: "3.9"
home: https://github.com/validatedpatterns/quay-chart
maintainers:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<!-- markdownlint-disable MD013 -->

![Version: 0.1.2](https://img.shields.io/badge/Version-0.1.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.9](https://img.shields.io/badge/AppVersion-3.9-informational?style=flat-square)
![Version: 0.1.3](https://img.shields.io/badge/Version-0.1.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.9](https://img.shields.io/badge/AppVersion-3.9-informational?style=flat-square)

<!-- markdownlint-enable MD013 -->

Expand Down
2 changes: 1 addition & 1 deletion templates/object-bucket-claim.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
name: {{ .Values.objectStorage.objectBucketClaim.name }}
namespace: {{ .Values.quay.namespace }}
annotations:
argocd.argoproj.io/sync-wave: "5" # Create OBC after NooBaa system is ready
argocd.argoproj.io/sync-wave: "36" # Create OBC after NooBaa system is ready
spec:
generateBucketName: {{ .Values.objectStorage.objectBucketClaim.bucketName }}
storageClassName: {{ .Values.objectStorage.objectBucketClaim.storageClass }}
2 changes: 1 addition & 1 deletion templates/quay-config-bundle-secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ metadata:
name: {{ .Values.quay.configBundleSecret.name }}
namespace: {{ .Values.quay.namespace }}
annotations:
argocd.argoproj.io/sync-wave: "7" # Layer 1: Create base config secret (template)
argocd.argoproj.io/sync-wave: "38" # Layer 1: Create base config secret (template)
type: Opaque
stringData:
config.yaml: |
Expand Down
2 changes: 1 addition & 1 deletion templates/quay-registry.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ metadata:
name: quay-registry
namespace: {{ .Values.quay.namespace | default "quay-enterprise" }}
annotations:
argocd.argoproj.io/sync-wave: "10" # Layer 1: Deploy Quay Registry
argocd.argoproj.io/sync-wave: "41" # Layer 1: Deploy Quay Registry
argocd.argoproj.io/sync-options: SkipDryRunOnMissingResource=true
spec:
components:
Expand Down
2 changes: 1 addition & 1 deletion templates/quay-s3-credentials-job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
name: quay-s3-credentials-setup
namespace: {{ .Values.quay.namespace }}
annotations:
argocd.argoproj.io/sync-wave: "8" # Layer 1: Setup S3 credentials
argocd.argoproj.io/sync-wave: "39" # Layer 1: Setup S3 credentials
spec:
template:
spec:
Expand Down
10 changes: 5 additions & 5 deletions templates/quay-s3-setup-serviceaccount.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
name: quay-s3-setup
namespace: {{ .Values.quay.namespace }}
annotations:
argocd.argoproj.io/sync-wave: "6" # Layer 1: Create ServiceAccount/RBAC
argocd.argoproj.io/sync-wave: "37" # Layer 1: Create ServiceAccount/RBAC
labels:
app: quay-s3-setup
---
Expand All @@ -15,7 +15,7 @@ metadata:
name: quay-s3-setup
namespace: {{ .Values.quay.namespace }}
annotations:
argocd.argoproj.io/sync-wave: "6" # Layer 1: Create ServiceAccount/RBAC
argocd.argoproj.io/sync-wave: "37" # Layer 1: Create ServiceAccount/RBAC
rules:
# Read template secret and create new secret with real credentials in quay namespace
- apiGroups: [""]
Expand All @@ -33,7 +33,7 @@ metadata:
name: quay-s3-setup-quay-resources
namespace: {{ .Values.quay.namespace }}
annotations:
argocd.argoproj.io/sync-wave: "6" # Layer 1: Create ServiceAccount/RBAC
argocd.argoproj.io/sync-wave: "37" # Layer 1: Create ServiceAccount/RBAC
rules:
# ObjectBucketClaim access - OBC is in quay namespace
- apiGroups: ["objectbucket.io"]
Expand All @@ -54,7 +54,7 @@ metadata:
name: quay-s3-setup
namespace: {{ .Values.quay.namespace }}
annotations:
argocd.argoproj.io/sync-wave: "6" # Layer 1: Create ServiceAccount/RBAC
argocd.argoproj.io/sync-wave: "37" # Layer 1: Create ServiceAccount/RBAC
subjects:
- kind: ServiceAccount
name: quay-s3-setup
Expand All @@ -70,7 +70,7 @@ metadata:
name: quay-s3-setup-quay-resources
namespace: {{ .Values.quay.namespace }}
annotations:
argocd.argoproj.io/sync-wave: "6" # Layer 1: Create ServiceAccount/RBAC
argocd.argoproj.io/sync-wave: "37" # Layer 1: Create ServiceAccount/RBAC
subjects:
- kind: ServiceAccount
name: quay-s3-setup
Expand Down
Loading