- 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
694 B
YAML
19 lines
694 B
YAML
apiVersion: apiregistration.k8s.io/v1
|
|
kind: APIService
|
|
metadata:
|
|
name: v1alpha1.{{ .Values.groupName }}
|
|
labels:
|
|
app: {{ include "cert-manager-webhook-domeneshop.name" . }}
|
|
chart: {{ include "cert-manager-webhook-domeneshop.chart" . }}
|
|
release: {{ .Release.Name }}
|
|
heritage: {{ .Release.Service }}
|
|
annotations:
|
|
cert-manager.io/inject-ca-from: "{{ .Release.Namespace }}/{{ include "cert-manager-webhook-domeneshop.servingCertificate" . }}"
|
|
spec:
|
|
group: {{ .Values.groupName }}
|
|
groupPriorityMinimum: 1000
|
|
versionPriority: 15
|
|
service:
|
|
name: {{ include "cert-manager-webhook-domeneshop.fullname" . }}
|
|
namespace: {{ .Release.Namespace }}
|
|
version: v1alpha1
|