- Implement tests for KubernetesCluster including registration, connectivity status, and error handling. - Create tests for Tenant creation, member management, and status changes. - Add tests for ServiceInstance provisioning and state management. - Introduce RegisterClusterHandler tests to validate registration requests and error scenarios. - Set up project files for new test projects with necessary dependencies.
20 lines
484 B
YAML
20 lines
484 B
YAML
{{- if .Values.identity.enabled }}
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "entkube.fullname" . }}-identity
|
|
labels:
|
|
{{- include "entkube.labels" . | nindent 4 }}
|
|
app.kubernetes.io/component: identity
|
|
spec:
|
|
type: ClusterIP
|
|
ports:
|
|
- port: {{ .Values.identity.port }}
|
|
targetPort: http
|
|
protocol: TCP
|
|
name: http
|
|
selector:
|
|
{{- include "entkube.selectorLabels" . | nindent 4 }}
|
|
app.kubernetes.io/component: identity
|
|
{{- end }}
|