Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 78 for quote (0.31 sec)

  1. manifests/charts/gateways/istio-egress/templates/injected-deployment.yaml

              {{- end }}
              {{- range $key, $val := $gateway.env }}
              - name: {{ $key }}
                value: {{ $val | quote }}
              {{- end }}
              volumeMounts:
              {{- range $gateway.secretVolumes }}
              - name: {{ .name }}
                mountPath: {{ .mountPath | quote }}
                readOnly: true
              {{- end }}
              {{- range $gateway.configVolumes }}
              {{- if .mountPath }}
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 5K bytes
    - Viewed (0)
  2. manifests/charts/gateways/istio-ingress/templates/injected-deployment.yaml

              {{- end }}
              {{- range $key, $val := $gateway.env }}
              - name: {{ $key }}
                value: {{ $val | quote }}
              {{- end }}
              volumeMounts:
              {{- range $gateway.secretVolumes }}
              - name: {{ .name }}
                mountPath: {{ .mountPath | quote }}
                readOnly: true
              {{- end }}
              {{- range $gateway.configVolumes }}
              {{- if .mountPath }}
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 5K bytes
    - Viewed (0)
  3. manifests/charts/gateways/istio-ingress/templates/deployment.yaml

            istio.io/rev: {{ .Values.revision | default "default" | quote }}
            install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
            operator.istio.io/component: "IngressGateways"
            sidecar.istio.io/inject: "false"
          annotations:
            istio.io/rev: {{ .Values.revision | default "default" | quote }}
    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)
  4. manifests/charts/gateways/istio-egress/templates/service.yaml

      namespace: {{ .Release.Namespace }}
      annotations:
        {{- range $key, $val := $gateway.serviceAnnotations }}
        {{ $key }}: {{ $val | quote }}
        {{- end }}
      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" }}
        operator.istio.io/component: "EgressGateways"
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  5. manifests/charts/gateways/istio-egress/templates/deployment.yaml

            istio.io/rev: {{ .Values.revision | default "default" | quote }}
            install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
            operator.istio.io/component: "EgressGateways"
            sidecar.istio.io/inject: "false"
          annotations:
            istio.io/rev: {{ .Values.revision | default "default" | quote }}
    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)
  6. manifests/charts/gateways/istio-ingress/templates/service.yaml

      namespace: {{ .Release.Namespace }}
      annotations:
        {{- range $key, $val := $gateway.serviceAnnotations }}
        {{ $key }}: {{ $val | quote }}
        {{- end }}
      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
    - 1.5K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/-CacheControlCommon.kt

            if (pos < value.length && value[pos] == '\"') {
              // Quoted string.
              pos++ // Consume '"' open quote.
              val parameterStart = pos
              pos = value.indexOf('"', pos)
              parameter = value.substring(parameterStart, pos)
              pos++ // Consume '"' close quote (if necessary).
            } else {
              // Unquoted string.
              val parameterStart = pos
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Apr 15 13:41:01 GMT 2024
    - 7.2K bytes
    - Viewed (0)
  8. manifests/charts/gateway/templates/deployment.yaml

          annotations:
            {{- toYaml . | nindent 8 }}
          {{- end }}
          labels:
            sidecar.istio.io/inject: "true"
            {{- with .Values.revision }}
            istio.io/rev: {{ . | quote }}
            {{- end }}
            {{- include "gateway.podLabels" . | nindent 8 }}
        spec:
          {{- with .Values.imagePullSecrets }}
          imagePullSecrets:
            {{- toYaml . | nindent 8 }}
          {{- end }}
    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)
  9. helm/minio/templates/service.yaml

      clusterIP: {{ .Values.service.clusterIP }}
      {{- end }}
      {{- if or (eq .Values.service.type "LoadBalancer") (eq .Values.service.type "NodePort") }}
      externalTrafficPolicy: {{ .Values.service.externalTrafficPolicy | quote }}
      {{- end }}
      {{- if and (eq .Values.service.type "LoadBalancer") .Values.service.loadBalancerSourceRanges }}
      loadBalancerSourceRanges: {{ .Values.service.loadBalancerSourceRanges }}
      {{ end }}
    Others
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 10:05:53 GMT 2024
    - 1.7K bytes
    - Viewed (0)
  10. manifests/charts/gateways/istio-egress/templates/rolebindings.yaml

    kind: RoleBinding
    metadata:
      name: {{ $gateway.name }}-sds
      namespace: {{ .Release.Namespace }}
      labels:
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
        operator.istio.io/component: "EgressGateways"
    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: Role
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 630 bytes
    - Viewed (0)
Back to top