This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

feat(k8s): declare service for the healthcheck endpoint

+12
+2
kubernetes/notella/kustomization.yaml
··· 3 3 4 4 resources: 5 5 - deployment.yaml 6 + - service.yaml 7 +
+10
kubernetes/notella/service.yaml
··· 1 + apiVersion: v1 2 + kind: Service 3 + metadata: 4 + name: notella-healthcheck 5 + spec: 6 + ports: 7 + - name: healthcheck 8 + port: 8080 9 + targetPort: 8080 10 + protocol: TCP