Sha256: a9c05abbe2c497eba94e1af2ca1a7f22175ca8cab036ba0316569cb99fdeedf1

Contents?: true

Size: 1.09 KB

Versions: 24

Compression:

Stored size: 1.09 KB

Contents

apiVersion: extensions/v1beta1
kind: Deployment
metadata:
  name: {{ template "fullname" . }}
  labels:
    app: {{ template "name" . }}
    chart: {{ .Chart.Name }}-{{ .Chart.Version }}
    release: {{ .Release.Name }}
    heritage: {{ .Release.Service }}
spec:
  replicas: {{ .Values.replicaCount }}
  template:
    metadata:
      labels:
        app: {{ template "name" . }}
        release: {{ .Release.Name }}
    spec:
      containers:
        - name: {{ .Chart.Name }}
          image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
          imagePullPolicy: {{ .Values.image.pullPolicy }}
          ports:
            - containerPort: {{ .Values.service.internalPort }}
          livenessProbe:
            httpGet:
              path: /
              port: {{ .Values.service.internalPort }}
          readinessProbe:
            httpGet:
              path: /
              port: {{ .Values.service.internalPort }}
          resources:
{{ toYaml .Values.resources | indent 12 }}
    {{- if .Values.nodeSelector }}
      nodeSelector:
{{ toYaml .Values.nodeSelector | indent 8 }}
    {{- end }}

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
kite-1.2.3 tpl/service/%output_path%/charts/%app_name%/templates/deployment.yaml
kite-1.2.2 tpl/service/%output_path%/charts/%app_name%/templates/deployment.yaml
kite-1.2.1 tpl/service/%output_path%/charts/%app_name%/templates/deployment.yaml
kite-1.2.0 tpl/service/%output_path%/charts/%app_name%/templates/deployment.yaml
kite-1.1.17 tpl/service/%output_path%/charts/%app_name%/templates/deployment.yaml
kite-1.1.16 tpl/service/%output_path%/charts/%app_name%/templates/deployment.yaml
kite-1.1.15 tpl/service/%output_path%/charts/%app_name%/templates/deployment.yaml
kite-1.1.14 tpl/service/%output_path%/charts/%app_name%/templates/deployment.yaml
kite-1.1.13 tpl/service/%output_path%/charts/%app_name%/templates/deployment.yaml
kite-1.1.12 tpl/service/%output_path%/charts/%app_name%/templates/deployment.yaml
kite-1.1.11 tpl/service/%output_path%/charts/%app_name%/templates/deployment.yaml
kite-1.1.10 tpl/service/%output_path%/charts/%app_name%/templates/deployment.yaml
kite-1.1.9 tpl/service/%output_path%/charts/%app_name%/templates/deployment.yaml
kite-1.1.8 tpl/service/%output_path%/charts/%app_name%/templates/deployment.yaml
kite-1.1.7 tpl/service/%output_path%/charts/%app_name%/templates/deployment.yaml
kite-1.1.3 tpl/service/%output_path%/charts/%app_name%/templates/deployment.yaml
kite-1.1.1 tpl/service/%output_path%/charts/%app_name%/templates/deployment.yaml
kite-1.0.10 tpl/service/%output_path%/charts/%app_name%/templates/deployment.yaml
kite-1.0.6 tpl/service/%output_path%/charts/%app_name%/templates/deployment.yaml
kite-1.0.4 tpl/service/%output_path%/charts/%app_name%/templates/deployment.yaml