Skip to content

Commit 58dffd0

Browse files
committed
fix: with examples
1 parent 9c87d96 commit 58dffd0

File tree

4 files changed

+58
-1
lines changed

4 files changed

+58
-1
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
apiVersion: argoproj.io/v1alpha1
2+
kind: Application
3+
metadata:
4+
name: nginx
5+
namespace: argocd
6+
spec:
7+
project: default
8+
destination:
9+
server: https://kubernetes.default.svc
10+
namespace: nginx
11+
source:
12+
repoURL: https://sunggun-yu.github.io/meowhq-helm-charts
13+
chart: meowhq-nginx
14+
targetRevision: 1.9.1
15+
helm:
16+
valueFiles:
17+
- values.yaml
18+
- values-aks.yaml
19+
values:
20+
nginx:
21+
# additional customization
22+
replicaCount: 2
23+
syncPolicy:
24+
automated:
25+
prune: true
26+
selfHeal: true
27+
syncOptions:
28+
- CreateNamespace=true
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
apiVersion: argoproj.io/v1alpha1
2+
kind: Application
3+
metadata:
4+
name: nginx
5+
namespace: argocd
6+
spec:
7+
project: default
8+
destination:
9+
server: https://kubernetes.default.svc
10+
namespace: nginx
11+
source:
12+
repoURL: https://sunggun-yu.github.io/meowhq-helm-charts
13+
chart: meowhq-nginx
14+
targetRevision: 1.9.1
15+
helm:
16+
valueFiles:
17+
- values.yaml
18+
- values-gke.yaml
19+
values:
20+
nginx:
21+
# additional customization
22+
replicaCount: 1
23+
syncPolicy:
24+
automated:
25+
prune: true
26+
selfHeal: true
27+
syncOptions:
28+
- CreateNamespace=true

charts/meowhq-nginx/values-aks.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# ------------------------------------------------------------------------------
44

55
nginx:
6+
replicaCount: 2
67
image:
78
tag: 1.25.5-debian-12-r0
89
resources:

charts/meowhq-nginx/values-gke.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
nginx:
66
resources:
77
requests:
8-
cpu: 50m
8+
cpu: 200m
99
memory: 256Mi
1010
limits:
1111
cpu: 500m

0 commit comments

Comments
 (0)