- Moved Go module files to the `src` directory. - Updated Dockerfile to copy source files from `src` and adjusted build context. - Introduced a multi-stage build process for better image management. - Added Helm chart files and CI configurations for automated builds and releases. - Removed obsolete Makefile and unnecessary files. - Updated README to reflect project changes and usage instructions. - Added initial versioning and metadata for the Helm chart.
19 lines
577 B
YAML
19 lines
577 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "cert-manager-webhook-domeneshop.fullname" . }}
|
|
labels:
|
|
app: {{ include "cert-manager-webhook-domeneshop.name" . }}
|
|
chart: {{ include "cert-manager-webhook-domeneshop.chart" . }}
|
|
release: {{ .Release.Name }}
|
|
heritage: {{ .Release.Service }}
|
|
spec:
|
|
type: {{ .Values.service.type }}
|
|
ports:
|
|
- port: {{ .Values.service.port }}
|
|
targetPort: https
|
|
protocol: TCP
|
|
name: https
|
|
selector:
|
|
app: {{ include "cert-manager-webhook-domeneshop.name" . }}
|
|
release: {{ .Release.Name }}
|