Skip to content
Open
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
keys/
keys/
keys/
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ metadata:
spec:
project: default
source:
repoURL: 'https://github.com/yourusername/yourrepository'
repoURL: 'https://github.com/ankitsingh16391/devopshift-welcome'
path: ./welcome/app/fe/bookinfo/manifests/manual
targetRevision: argocd-workshop
destination:
Expand All @@ -16,8 +16,8 @@ spec:
automated:
prune: true
selfHeal: true
syncOptions:
- CreateNamespace=true
syncOptions:
- CreateNamespace=true
# webhook:
# github:
# secret: webhook-secret
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ argoApplication:
targetRevision: argocd-workshop
server: 'https://kubernetes.default.svc'
namespace: default
prune: true
prune: false
selfHeal: true
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ metadata:
app: details
version: v1
spec:
replicas: {{ .Values.replicaCount }}
replicas: {{ .Values.details.replicaCount }}
selector:
matchLabels:
app: details
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ metadata:
app: productpage
version: v1
spec:
replicas: 3
replicas: {{ .Values.productpage.replicaCount }}
selector:
matchLabels:
app: productpage
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ metadata:
app: ratings
version: v1
spec:
replicas: {{ .Values.replicaCount }}
replicas: {{ .Values.ratings.replicaCount }}
selector:
matchLabels:
app: ratings
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ metadata:
app: reviews
version: v1
spec:
replicas: {{ .Values.replicaCount }}
replicas: {{ .Values.reviews.replicaCount }}
selector:
matchLabels:
app: reviews
Expand Down Expand Up @@ -67,7 +67,7 @@ metadata:
app: reviews
version: v2
spec:
replicas: {{ .Values.replicaCount }}
replicas: {{ .Values.reviews.replicaCount }}
selector:
matchLabels:
app: reviews
Expand Down Expand Up @@ -107,7 +107,7 @@ metadata:
app: reviews
version: v3
spec:
replicas: {{ .Values.replicaCount }}
replicas: {{ .Values.reviews.replicaCount }}
selector:
matchLabels:
app: reviews
Expand Down
Original file line number Diff line number Diff line change
@@ -1,20 +1,24 @@
replicaCount: 1


image:
tag: 1.19.1
pullPolicy: IfNotPresent

details:
image: docker.io/istio/examples-bookinfo-details-v1
replicaCount: 1

ratings:
image: docker.io/istio/examples-bookinfo-ratings-v1
replicaCount: 2

reviews:
image: docker.io/istio/examples-bookinfo-reviews-v1
replicaCount: 3

productpage:
image: docker.io/istio/examples-bookinfo-productpage-v1
replicaCount: 4

service:
type: LoadBalancer
Expand Down
2 changes: 1 addition & 1 deletion welcome/app/fe/bookinfo/manifests/manual/bookinfo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ metadata:
app: details
version: v1
spec:
replicas: 1
replicas: 3
selector:
matchLabels:
app: details
Expand Down