Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,911 for templatize (0.38 sec)

  1. pkg/kube/inject/template.go

    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/util/protomarshal"
    )
    
    var InjectionFuncmap = createInjectionFuncmap()
    
    func createInjectionFuncmap() template.FuncMap {
    	return template.FuncMap{
    		"formatDuration":      formatDuration,
    		"isset":               isset,
    		"excludeInboundPort":  excludeInboundPort,
    		"includeInboundPorts": includeInboundPorts,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 02:12:03 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  2. pilot/pkg/security/authz/matcher/template.go

    // PatherTemplateMatcher creates a URI template matcher for path.
    func PathTemplateMatcher(path string) *uri_template.UriTemplateMatchConfig {
    	return &uri_template.UriTemplateMatchConfig{
    		PathTemplate: sanitizePathTemplate(path),
    	}
    }
    
    // sanitizePathTemplate converts the path template into a valid envoy uri template.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. cluster/gce/gci/testdata/kube-apiserver/kms.template

    {{ template "base" .KubeHome }}
    ENCRYPTION_PROVIDER_CONFIG_PATH={{.EncryptionProviderConfigPath}}
    {{if .EncryptionProviderConfig}}
      ENCRYPTION_PROVIDER_CONFIG={{.EncryptionProviderConfig}}
    {{end}}
    {{if .CloudKMSIntegration}}
      readonly CLOUD_KMS_INTEGRATION=true
    {{end}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 18 11:14:24 UTC 2021
    - 335 bytes
    - Viewed (0)
  4. cluster/gce/gci/testdata/kube-apiserver/etcd.template

    {{ template "base" .KubeHome }}
    readonly ETCD_APISERVER_CA_KEY={{.CAKey}}
    readonly ETCD_APISERVER_CA_CERT={{.CACert}}
    readonly ETCD_APISERVER_SERVER_KEY={{.APIServerKey}}
    readonly ETCD_APISERVER_SERVER_CERT={{.APIServerCert}}
    readonly ETCD_APISERVER_CLIENT_KEY={{.ETCDKey}}
    readonly ETCD_APISERVER_CLIENT_CERT={{.ETCDCert}}
    readonly ETCD_SERVERS={{.ETCDServers}}
    readonly ETCD_APISERVER_CA_CERT_PATH={{.CACertPath}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 18 11:14:24 UTC 2021
    - 819 bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inject/custom-template.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: hello
    spec:
      selector:
        matchLabels:
          app: hello
      template:
        metadata:
          annotations:
            inject.istio.io/templates: "custom"
          labels:
            app: hello
        spec:
          containers:
          - name: hello
            image: "fake.docker.io/google-samples/hello-go-gke:1.0"
            readinessProbe:
              httpGet:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 06 23:34:59 UTC 2021
    - 411 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/release/notes-template.md

    ## New features and usability improvements
    
    <!-- Do not add breaking changes or deprecations here! Add them to the upgrade guide instead. -->
    
    <!--
    
    ================== TEMPLATE ==============================
    
    <a name="FILL-IN-KEY-AREA"></a>
    ### FILL-IN-KEY-AREA improvements
    
    <<<FILL IN CONTEXT FOR KEY AREA>>>
    Example:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 14:04:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. manifests/charts/istio-control/istio-discovery/files/injection-template.yaml

        env:
        {{- range $key, $value := .ProxyConfig.ProxyMetadata }}
        - name: {{ $key }}
          value: "{{ $value }}"
        {{- end }}
      {{- end }}
        resources:
      {{ template "resources" . }}
        securityContext:
          allowPrivilegeEscalation: {{ .Values.global.proxy.privileged }}
          privileged: {{ .Values.global.proxy.privileged }}
          capabilities:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  8. manifests/charts/istiod-remote/files/injection-template.yaml

        env:
        {{- range $key, $value := .ProxyConfig.ProxyMetadata }}
        - name: {{ $key }}
          value: "{{ $value }}"
        {{- end }}
      {{- end }}
        resources:
      {{ template "resources" . }}
        securityContext:
          allowPrivilegeEscalation: {{ .Values.global.proxy.privileged }}
          privileged: {{ .Values.global.proxy.privileged }}
          capabilities:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inputs/custom-template.yaml.40.template.gen.yaml

    # defaultTemplates defines the default template to use for pods that do not explicitly specify a template
    defaultTemplates: [sidecar]
    policy: enabled
    alwaysInjectSelector:
      []
    neverInjectSelector:
      []
    injectedAnnotations:
    template: "{{ Template_Version_And_Istio_Version_Mismatched_Check_Installation }}"
    templates:
      sidecar: |
        {{- define "resources"  }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 76.7K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inject/custom-template.iop.yaml

    spec:
      values:
        sidecarInjectorWebhook:
          templates:
            custom: |
              metadata:
                annotations:
                  # Disable the built-in transformations. In the future we may want a template-level API
                  prometheus.istio.io/merge-metrics: "false"
                  sidecar.istio.io/rewriteAppHTTPProbers: "false"
                  foo: bar
              spec:
                containers:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 06 23:34:59 UTC 2021
    - 1.2K bytes
    - Viewed (0)
Back to top