03702ff625
Adds a Helm chart under charts/hightower/ as an alternative to the Flux/Kustomize deployment. Distributed via GitHub Pages (gh-pages branch). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
17 lines
488 B
YAML
17 lines
488 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "hightower.temporal.serviceName" . }}
|
|
labels:
|
|
{{- include "hightower.labels" . | nindent 4 }}
|
|
spec:
|
|
selector:
|
|
{{- include "hightower.temporal.selectorLabels" . | nindent 4 }}
|
|
ports:
|
|
- name: grpc
|
|
port: {{ .Values.temporal.ports.grpc }}
|
|
targetPort: {{ .Values.temporal.ports.grpc }}
|
|
- name: web-ui
|
|
port: {{ .Values.temporal.ports.webUi }}
|
|
targetPort: {{ .Values.temporal.ports.webUi }}
|