20d8146e8c
- Created new documentation files including TROUBLESHOOTING.md, CONFIGURATION.md, and CONTRIBUTING.md. - Added deployment guide with automated and manual instructions. - Introduced new YAML configurations for Kubernetes resources and Helm charts. - Implemented a deployment script for setting up the GitOps infrastructure.
32 lines
775 B
YAML
32 lines
775 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: argo-rollouts
|
|
namespace: argocd
|
|
spec:
|
|
project: default
|
|
destination:
|
|
namespace: kube-devops
|
|
server: https://kubernetes.default.svc
|
|
sources:
|
|
- repoURL: https://argoproj.github.io/argo-helm
|
|
chart: argo-rollouts
|
|
targetRevision: 2.40.9
|
|
helm:
|
|
valueFiles:
|
|
- $values/argo-rollouts/base/values.yaml
|
|
- repoURL: git@git.janis-eccarius.de:NowChess/Gitops.git
|
|
path: ./argo-rollouts/base
|
|
ref: values
|
|
targetRevision: main
|
|
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
selfHeal: true
|
|
ignoreDifferences:
|
|
- group: 'apiextensions.k8s.io'
|
|
kind: CustomResourceDefinition
|
|
jsonPointers:
|
|
- /spec/preserveUnknownFields
|