Skip to content

Commit

Permalink
Helm Update - add custom yaml files
Browse files Browse the repository at this point in the history
  • Loading branch information
jnewsome97 authored Nov 29, 2023
1 parent d2ba5c8 commit 7c75ec2
Show file tree
Hide file tree
Showing 3 changed files with 72 additions and 0 deletions.
22 changes: 22 additions & 0 deletions documentation/modules/ROOT/examples/bgd-app-helm-custom.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: bgd-helm
spec:
destination:
name: ''
namespace: user1-bgd
server: 'https://kubernetes.default.svc'
source:
path: documentation/modules/ROOT/examples/bgd-helm-chart
repoURL: 'https://github.com/jnewsome97/openshift-gitops-workshop'
targetRevision: master
helm:
valueFiles:
- custom_values_1/values.yaml
sources: []
project: default
syncPolicy:
automated:
prune: true
selfHeal: true
31 changes: 31 additions & 0 deletions documentation/modules/ROOT/examples/bgd-app-helm-para.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: bgd-helm
spec:
destination:
name: ''
namespace: user1-bgd
server: 'https://kubernetes.default.svc'
source:
path: documentation/modules/ROOT/examples/bgd-helm-chart
repoURL: 'https://github.com/jnewsome97/openshift-gitops-workshop'
targetRevision: master
helm:
parameters:
- name: color
value: purple
- name: image.name
value: quay.io/rhdevelopers/bgd
- name: image.pullPolicy
value: IfNotPresent
- name: image.tag
value: 1.0.0
- name: replicas
value: '1'
sources: []
project: default
syncPolicy:
automated:
prune: true
selfHeal: true
19 changes: 19 additions & 0 deletions documentation/modules/ROOT/examples/bgd-app-helm.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: bgd-helm
spec:
destination:
name: ''
namespace: user1-bgd
server: 'https://kubernetes.default.svc'
source:
path: documentation/modules/ROOT/examples/bgd-helm-chart
repoURL: 'https://github.com/jnewsome97/openshift-gitops-workshop'
targetRevision: master
sources: []
project: default
syncPolicy:
automated:
prune: true
selfHeal: true

0 comments on commit 7c75ec2

Please sign in to comment.