Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for releases (0.21 sec)

  1. helm/minio/templates/deployment.yaml

        {{- end }}
      replicas: 1
      selector:
        matchLabels:
          app: {{ template "minio.name" . }}
          release: {{ .Release.Name }}
      template:
        metadata:
          name: {{ template "minio.fullname" . }}
          labels:
            app: {{ template "minio.name" . }}
            release: {{ .Release.Name }}
            {{- if .Values.podLabels }}
              {{- toYaml .Values.podLabels | nindent 8 }}
            {{- end }}
    Others
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sun Mar 03 17:50:39 GMT 2024
    - 8.7K bytes
    - Viewed (0)
  2. manifests/charts/istio-operator/templates/deployment.yaml

                - name: LEADER_ELECTION_NAMESPACE
                  value: {{.Release.Namespace | quote}}
                - name: POD_NAME
                  valueFrom:
                    fieldRef:
                      fieldPath: metadata.name
                - name: OPERATOR_NAME
                  value: {{.Release.Namespace | quote}}
                - name: WAIT_FOR_RESOURCES_TIMEOUT
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Aug 25 19:10:42 GMT 2023
    - 2.6K bytes
    - Viewed (0)
  3. manifests/charts/gateways/istio-egress/templates/deployment.yaml

    {{- if eq $gateway.injectionTemplate "" }}
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: {{ $gateway.name }}
      namespace: {{ .Release.Namespace }}
      labels:
    {{ $gateway.labels | toYaml | indent 4 }}
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 12.1K bytes
    - Viewed (0)
  4. manifests/charts/istio-control/istio-discovery/templates/deployment.yaml

      namespace: {{ .Release.Namespace }}
      labels:
        app: istiod
        istio.io/rev: {{ .Values.revision | default "default" }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
        operator.istio.io/component: "Pilot"
        istio: pilot
        release: {{ .Release.Name }}
    {{- range $key, $val := .Values.pilot.deploymentLabels }}
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Thu Feb 29 19:22:34 GMT 2024
    - 8.3K bytes
    - Viewed (0)
  5. manifests/charts/gateways/istio-ingress/templates/deployment.yaml

    {{- if eq $gateway.injectionTemplate "" }}
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: {{ $gateway.name }}
      namespace: {{ .Release.Namespace }}
      labels:
    {{ $gateway.labels | toYaml | indent 4 }}
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 12.1K bytes
    - Viewed (1)
  6. manifests/charts/gateway/templates/deployment.yaml

    apiVersion: apps/v1
    kind: {{ .Values.kind | default "Deployment" }}
    metadata:
      name: {{ include "gateway.name" . }}
      namespace: {{ .Release.Namespace }}
      labels:
        {{- include "gateway.labels" . | nindent 4}}
      annotations:
        {{- .Values.annotations | toYaml | nindent 4 }}
    spec:
      {{- if not .Values.autoscaling.enabled }}
      {{- with .Values.replicaCount }}
      replicas: {{ . }}
      {{- end }}
      {{- end }}
      selector:
        matchLabels:
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 3.5K bytes
    - Viewed (0)
Back to top