Olaf Bohlen
2024-01-29 12a2113666359680853ecd7f934cf4d8363975dc
app modifications
3 files modified
12 ■■■■ changed files
Chart.yaml 2 ●●● patch | view | raw | blame | history
templates/deployment.yaml 6 ●●●● patch | view | raw | blame | history
values.yaml 4 ●●●● patch | view | raw | blame | history
Chart.yaml
@@ -21,4 +21,4 @@
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "1.16.0"
appVersion: "v1"
templates/deployment.yaml
@@ -35,16 +35,16 @@
          imagePullPolicy: {{ .Values.image.pullPolicy }}
          ports:
            - name: http
              containerPort: 80
              containerPort: 8080
              protocol: TCP
          livenessProbe:
            httpGet:
              path: /
              port: http
              port: 8080
          readinessProbe:
            httpGet:
              path: /
              port: http
              port: 8080
          resources:
            {{- toYaml .Values.resources | nindent 12 }}
      {{- with .Values.nodeSelector }}
values.yaml
@@ -5,7 +5,7 @@
replicaCount: 1
image:
  repository: nginx
  repository: quay.io/olbohlen/hello-apache
  pullPolicy: IfNotPresent
  # Overrides the image tag whose default is the chart appVersion.
  tag: ""
@@ -38,7 +38,7 @@
service:
  type: ClusterIP
  port: 80
  port: 8080
ingress:
  enabled: false