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
7 changes: 6 additions & 1 deletion charts/external-secrets-operator/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
apiVersion: v2
name: external-secrets-operator
description: External Secrets Operator with AWS Secrets Manager integration via IRSA
version: 1.0.0
version: 1.0.1
type: application
home: https://rh-mobb.github.io/validated-pattern-helm-charts/
maintainers:
- name: rh-mobb
dependencies:
- name: helper-status-checker
version: 4.4.3
repository: https://rosa-hcp-dedicated-vpc.github.io/helm-repository/
condition: helper-status-checker.enabled
11 changes: 11 additions & 0 deletions charts/external-secrets-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,14 @@ target:
namespace: istio-system
secretName: aws-credentials
refreshInterval: 1h

helper-status-checker:
enabled: true
approver: true
checks:
- operatorName: external-secrets-operator
subscriptionName: external-secrets-operator
namespace:
name: external-secrets
serviceAccount:
name: "external-secrets-install-check"
9 changes: 7 additions & 2 deletions charts/letsencrypt-clusterissuer/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
apiVersion: v2
name: letsencrypt-clusterissuer
description: Let's Encrypt ACME ClusterIssuer with DNS-01 Route 53 solver (uses IRSA, no static credentials)
version: 1.0.0
description: Installs cert-manager operator and creates a Let's Encrypt ACME ClusterIssuer with DNS-01 Route 53 solver (uses IRSA, no static credentials)
version: 1.0.1
type: application
home: https://rh-mobb.github.io/validated-pattern-helm-charts/
maintainers:
- name: rh-mobb
dependencies:
- name: helper-status-checker
version: 4.4.3
repository: https://rosa-hcp-dedicated-vpc.github.io/helm-repository/
condition: helper-status-checker.enabled
14 changes: 14 additions & 0 deletions charts/letsencrypt-clusterissuer/templates/certmanager.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
apiVersion: operator.openshift.io/v1alpha1
kind: CertManager
metadata:
name: cluster
annotations:
argocd.argoproj.io/sync-wave: "3"
argocd.argoproj.io/sync-options: SkipDryRunOnMissingResource=true
spec:
managementState: Managed
{{- if .Values.certManager.overrideArgs }}
controllerConfig:
overrideArgs:
{{- toYaml .Values.certManager.overrideArgs | nindent 6 }}
{{- end }}
15 changes: 15 additions & 0 deletions charts/letsencrypt-clusterissuer/templates/namespace.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
apiVersion: v1
kind: Namespace
metadata:
labels:
app: cert-manager
name: cert-manager
annotations:
argocd.argoproj.io/sync-wave: "-2"
---
apiVersion: v1
kind: Namespace
metadata:
name: cert-manager-operator
annotations:
argocd.argoproj.io/sync-wave: "-2"
7 changes: 7 additions & 0 deletions charts/letsencrypt-clusterissuer/templates/operatorgroup.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
apiVersion: operators.coreos.com/v1
kind: OperatorGroup
metadata:
name: cert-manager-operator
namespace: cert-manager-operator
annotations:
argocd.argoproj.io/sync-wave: "-1"
22 changes: 22 additions & 0 deletions charts/letsencrypt-clusterissuer/templates/subscription.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
apiVersion: operators.coreos.com/v1alpha1
kind: Subscription
metadata:
name: {{ .Values.subscription.name }}
namespace: cert-manager-operator
annotations:
argocd.argoproj.io/sync-wave: "0"
spec:
channel: {{ .Values.subscription.channel }}
{{- if .Values.certManagerRole }}
config:
env:
- name: ROLEARN
value: {{ .Values.certManagerRole }}
{{- end }}
installPlanApproval: {{ .Values.subscription.installPlanApproval }}
name: {{ .Values.subscription.name }}
source: {{ .Values.subscription.source }}
sourceNamespace: {{ .Values.subscription.sourceNamespace }}
{{- if .Values.subscription.startingCSV }}
startingCSV: {{ .Values.subscription.startingCSV }}
{{- end }}
26 changes: 26 additions & 0 deletions charts/letsencrypt-clusterissuer/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,29 @@ acme:
route53:
hostedZoneID: ""
region: ap-southeast-4

subscription:
name: openshift-cert-manager-operator
channel: stable-v1
installPlanApproval: Manual
source: redhat-operators
sourceNamespace: openshift-marketplace
startingCSV: ""

certManagerRole: ""

certManager:
overrideArgs:
- "--dns01-recursive-nameservers-only"
- "--dns01-recursive-nameservers=1.1.1.1:53,8.8.8.8:53"

helper-status-checker:
enabled: true
approver: true
checks:
- operatorName: openshift-cert-manager-operator
subscriptionName: openshift-cert-manager-operator
namespace:
name: cert-manager-operator
serviceAccount:
name: "cert-manager-install-check"
Loading