aboutsummaryrefslogtreecommitdiffstats
path: root/.gitmodules
blob: ddad6f6c9a278f331c0312f2a4921c0fb291c912 (plain)
1
2
3
4
5
6
7
8
9
10
11
[submodule "kubernetes/aai"]
  path = kubernetes/aai
  url = ../aai/oom
  branch = frankfurt
  ignore = dirty
[submodule "kubernetes/robot"]
  path = kubernetes/robot
  url = ../testsuite/oom
  branch = frankfurt
  ignore = dirty
* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */ }
apiVersion: v1
kind: Service
metadata:
  name: {{ include "common.fullname" . }}
  namespace: {{ include "common.namespace" . }}
  labels:
    app: {{ include "common.name" . }}
    chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
    release: {{ .Release.Name }}
    heritage: {{ .Release.Service }}
  annotations:
spec:
  type: {{ .Values.service.type }}
  ports:
    {{if eq .Values.service.type "NodePort" -}}
    - port: {{ .Values.service.externalPort }}
      nodePort: {{ .Values.global.nodePortPrefix | default .Values.nodePortPrefix }}{{ .Values.service.nodePort }}
      name: {{ .Values.service.name }}
    - port: {{ .Values.service.externalPortHttps }}
      nodePort: {{ .Values.global.nodePortPrefix | default .Values.nodePortPrefix }}{{ .Values.service.nodePortHttps }}
      name: {{ .Values.service.name }}-https
    {{- else -}}
    - port: {{ .Values.service.externalPort }}
      targetPort: {{ .Values.service.internalPort }}
      name: {{ .Values.service.name }}
    - port: {{ .Values.service.externalPortHttps }}
      targetPort: {{ .Values.service.internalPortHttps }}
      name: {{ .Values.service.name }}-https
    {{- end}}
  selector:
    app: {{ include "common.name" . }}
    release: {{ .Release.Name }}