Compare commits
No commits in common. "5215ad91b01741fe8b49cc8fc5c28ff48dc87610" and "0f6cf315477ceec4989f1f3b6fd15796acbcfadf" have entirely different histories.
5215ad91b0
...
0f6cf31547
@ -15,15 +15,41 @@ metadata:
|
|||||||
spec:
|
spec:
|
||||||
project: default # Or your specific Argo CD project
|
project: default # Or your specific Argo CD project
|
||||||
source:
|
source:
|
||||||
repoURL: https://bitnami-labs.github.io/sealed-secrets/ # Sealed Secrets chart repository
|
repoURL: https://bitnami-labs.github.io # Sealed Secrets chart repository
|
||||||
chart: sealed-secrets
|
chart: sealed-secrets
|
||||||
targetRevision: 2.17.2 # Specify the desired chart version (Check for the latest stable version!)
|
targetRevision: v2.17.2 # Specify the desired chart version (Check for the latest stable version!)
|
||||||
helm:
|
helm:
|
||||||
# Manage configuration through values here or via a values file
|
# Manage configuration through values here or via a values file
|
||||||
values: |
|
values: |
|
||||||
replicas: 1
|
# Example: Increase replicas for HA (if needed)
|
||||||
|
# replicas: 2
|
||||||
|
|
||||||
|
# Example: Add resource requests/limits
|
||||||
|
# resources:
|
||||||
|
# requests:
|
||||||
|
# cpu: 100m
|
||||||
|
# memory: 128Mi
|
||||||
|
# limits:
|
||||||
|
# cpu: 200m
|
||||||
|
# memory: 256Mi
|
||||||
|
|
||||||
|
# -- CRITICAL: Decide on CRD management ---
|
||||||
|
# Option A (Let Helm manage CRDs - Simpler setup, potential issues on Helm upgrades/uninstall):
|
||||||
|
# installCRDs: true # This flag might exist in some chart versions, check chart docs.
|
||||||
|
# If not, Helm might install CRDs in templates/crds/ by default.
|
||||||
|
|
||||||
|
# Option B (Recommended by Argo CD for CRDs - Manage CRDs Separately):
|
||||||
|
# Ensure CRDs are NOT managed by this Helm chart application.
|
||||||
|
# You would typically manage CRDs using a separate Argo CD Application
|
||||||
|
# with Sync Waves or apply them manually *before* this app syncs.
|
||||||
|
# Check the specific chart version's values.yaml for a flag like `crds.create` or similar and set it to `false`.
|
||||||
|
# If no such flag, Helm <3.x might still install them from templates/crds.
|
||||||
|
# Let's assume for newer charts you might need to ensure no explicit installCRDs=true is set
|
||||||
|
# and rely on the separate management described below.
|
||||||
|
|
||||||
|
# Optional: Use a separate values file from your Git repo
|
||||||
|
# valueFiles:
|
||||||
|
# - values/sealed-secrets-values.yaml
|
||||||
destination:
|
destination:
|
||||||
server: https://kubernetes.default.svc
|
server: https://kubernetes.default.svc
|
||||||
# Target namespace for the Sealed Secrets controller deployment itself
|
# Target namespace for the Sealed Secrets controller deployment itself
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user