Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for PodDNSSearchNamespaces (0.32 sec)

  1. pkg/kube/inject/testdata/inject/hello-template-in-values.iop.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      namespace: istio-system
      name: example-istiocontrolplane
    spec:
      values:
        global:
          podDNSSearchNamespaces:
          - "global"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 18 21:43:45 UTC 2020
    - 279 bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inputs/hello.yaml.12.values.gen.yaml

          "enabled": false
        },
        "namespace": "istio-system",
        "network": "",
        "omitSidecarInjectorConfigMap": false,
        "operatorManageWebhooks": false,
        "pilotCertProvider": "istiod",
        "podDNSSearchNamespaces": [
          "global",
          "{{ valueOrDefault .DeploymentMeta.Namespace \"default\" }}.global"
        ],
        "priorityClassName": "",
        "proxy": {
          "autoInject": "enabled",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. operator/pkg/validate/validate_values_test.go

    		},
    		{
    			desc: "StarIPRange",
    			yamlStr: `
    global:
      proxy:
        includeIPRanges: "*"
        excludeIPRanges: "*"
    `,
    		},
    		{
    			desc: "ProxyConfig",
    			yamlStr: `
    global:
      podDNSSearchNamespaces:
      - "my-namespace"
      proxy:
        includeIPRanges: "1.1.0.0/16,2.2.0.0/16"
        excludeIPRanges: "3.3.0.0/16,4.4.0.0/16"
        excludeInboundPorts: "333,444"
        clusterDomain: "my.domain"
        lifecycle:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 13:43:12 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-with-revision-canary.yaml

          - name: lightstep-certs
            secret:
              optional: true
              secretName: lightstep.cacert
          {{- end }}
          {{- if .Values.global.podDNSSearchNamespaces }}
          dnsConfig:
            searches:
              {{- range .Values.global.podDNSSearchNamespaces }}
              - {{ render . }}
              {{- end }}
          {{- end }}
        injectedAnnotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-configmap.yaml

          - name: lightstep-certs
            secret:
              optional: true
              secretName: lightstep.cacert
          {{- end }}
          {{- if .Values.global.podDNSSearchNamespaces }}
          dnsConfig:
            searches:
              {{- range .Values.global.podDNSSearchNamespaces }}
              - {{ render . }}
              {{- end }}
          {{- end }}
        injectedAnnotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-enabled-nsbydefault.yaml

          - name: lightstep-certs
            secret:
              optional: true
              secretName: lightstep.cacert
          {{- end }}
          {{- if .Values.global.podDNSSearchNamespaces }}
          dnsConfig:
            searches:
              {{- range .Values.global.podDNSSearchNamespaces }}
              - {{ render . }}
              {{- end }}
          {{- end }}
        injectedAnnotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-absolute-override.yaml

          - name: lightstep-certs
            secret:
              optional: true
              secretName: lightstep.cacert
          {{- end }}
          {{- if .Values.global.podDNSSearchNamespaces }}
          dnsConfig:
            searches:
              {{- range .Values.global.podDNSSearchNamespaces }}
              - {{ render . }}
              {{- end }}
          {{- end }}
        injectedAnnotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  8. manifests/charts/istio-control/istio-discovery/values.yaml

        # set of DNS settings than the normal application pods (e.g., in
        # multicluster scenarios).
        # NOTE: If using templates, follow the pattern in the commented example below.
        #podDNSSearchNamespaces:
        #- global
        #- "{{ valueOrDefault .DeploymentMeta.Namespace \"default\" }}.global"
    
        # Kubernetes >=v1.11.0 will create two PriorityClass, including system-cluster-critical and
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. manifests/charts/istiod-remote/values.yaml

        # set of DNS settings than the normal application pods (e.g., in
        # multicluster scenarios).
        # NOTE: If using templates, follow the pattern in the commented example below.
        #podDNSSearchNamespaces:
        #- global
        #- "{{ valueOrDefault .DeploymentMeta.Namespace \"default\" }}.global"
    
        # Kubernetes >=v1.11.0 will create two PriorityClass, including system-cluster-critical and
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  10. pkg/kube/inject/inject_test.go

    			in:         "hello-image-pull-secret.yaml",
    			want:       "hello-multiple-image-secrets.yaml.injected",
    			inFilePath: "hello-image-secrets-in-values.iop.yaml",
    		},
    		{
    			// Verifies that global.podDNSSearchNamespaces are applied properly
    			in:         "hello.yaml",
    			want:       "hello-template-in-values.yaml.injected",
    			inFilePath: "hello-template-in-values.iop.yaml",
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
Back to top