Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: sidd-harth/gitops-argocd
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: kodekloudhub/gitops-argocd
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 5 commits
  • 6 files changed
  • 1 contributor

Commits on Oct 28, 2022

  1. update solar system service port

    Inderpreet authored and Inderpreet committed Oct 28, 2022
    Copy the full SHA
    75edb1c View commit details

Commits on Oct 29, 2022

  1. add service for nginx app

    Inderpreet authored and Inderpreet committed Oct 29, 2022
    Copy the full SHA
    861d267 View commit details
  2. update service

    Inderpreet authored and Inderpreet committed Oct 29, 2022
    Copy the full SHA
    27ba5f8 View commit details
  3. update helm

    Inderpreet authored and Inderpreet committed Oct 29, 2022
    Copy the full SHA
    013b929 View commit details

Commits on Nov 5, 2022

  1. update service

    Inderpreet authored and Inderpreet committed Nov 5, 2022
    Copy the full SHA
    c4d9156 View commit details
Showing with 20 additions and 0 deletions.
  1. +1 −0 health-check/service.yaml
  2. +1 −0 helm-chart/templates/service.yaml
  3. +1 −0 helm-chart/values.yaml
  4. +15 −0 nginx-app/service.yml
  5. +1 −0 sealed-secret/service.yaml
  6. +1 −0 solar-system/service.yml
1 change: 1 addition & 0 deletions health-check/service.yaml
Original file line number Diff line number Diff line change
@@ -7,6 +7,7 @@ spec:
- port: 80
protocol: TCP
targetPort: 80
nodePort: 30335
selector:
app: random-shapes
type: NodePort
1 change: 1 addition & 0 deletions helm-chart/templates/service.yaml
Original file line number Diff line number Diff line change
@@ -11,5 +11,6 @@ spec:
targetPort: {{ .Values.service.targetPort }}
protocol: TCP
name: http
nodePort: {{ .Values.service.nodePort }}
selector:
{{- include "random-shapes.selectorLabels" . | nindent 4 }}
1 change: 1 addition & 0 deletions helm-chart/values.yaml
Original file line number Diff line number Diff line change
@@ -14,6 +14,7 @@ service:
type: ClusterIP
port: 80
targetPort: 80
nodePort: 30336

color:
circle: black
15 changes: 15 additions & 0 deletions nginx-app/service.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
apiVersion: v1
kind: Service
metadata:
labels:
app: nginx
name: nginx-service
spec:
ports:
- port: 80 #change to 80
protocol: TCP
targetPort: 80 #change to 80
nodePort: 30334
selector:
app: nginx
type: NodePort
1 change: 1 addition & 0 deletions sealed-secret/service.yaml
Original file line number Diff line number Diff line change
@@ -10,6 +10,7 @@ spec:
- port: 80
protocol: TCP
targetPort: 80
nodePort: 30337
selector:
app: secret-app
type: NodePort
1 change: 1 addition & 0 deletions solar-system/service.yml
Original file line number Diff line number Diff line change
@@ -9,6 +9,7 @@ spec:
- port: 80 #change to 80
protocol: TCP
targetPort: 80 #change to 80
nodePort: 30333
selector:
app: solar-system
type: NodePort