db0db427ee
* Add imagePullPolicy to ceph with default * Add imagePullPolicy to mariadb with default * Add missing imagePullPolicies to nova with defaults * Remove malfunctioning daemonset dependency from nova * Add missing neutron endpoint definition to nova values * Force v4 networking in ceph. Repeated bootstrapping is unreliable without this. * Update cinder dependencies based on testing * Optonal Horizon NodePort * Revert iptables stub for nova-api-osapi because we lack permississions to overwrite /sbin/iptables. We will continue to run in a privileged security context until we have a working solution.
22 lines
503 B
YAML
22 lines
503 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: horizon
|
|
spec:
|
|
ports:
|
|
{{ if .Values.network.enable_node_port }}
|
|
- nodePort: {{ .Values.network.node_port }}
|
|
port: {{ .Values.network.port }}
|
|
protocol: TCP
|
|
targetPort: {{ .Values.network.port }}
|
|
{{ else }}
|
|
- port: {{ .Values.network.port }}
|
|
protocol: TCP
|
|
targetPort: {{ .Values.network.port }}
|
|
{{ end }}
|
|
selector:
|
|
app: horizon
|
|
{{ if .Values.network.enable_node_port }}
|
|
type: NodePort
|
|
{{ end }}
|