Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for watchedNamespaces (0.27 sec)

  1. operator/cmd/mesh/operator-common.go

    	// operatorNamespace is the namespace the operator controller is installed into.
    	operatorNamespace string
    	// watchedNamespaces is the namespaces the operator controller watches, could be namespace list separated by comma.
    	watchedNamespaces string
    	// istioNamespace is deprecated, use watchedNamespaces instead.
    	istioNamespace string
    	// manifestsPath is a path to a charts and profiles directory in the local filesystem with a release tgz.
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Sat Dec 17 02:25:04 GMT 2022
    - 3.8K bytes
    - Viewed (0)
  2. operator/cmd/mesh/operator_test.go

    	tests := []struct {
    		operatorNamespace string
    		watchedNamespaces string
    	}{
    		{
    			// default nss
    			operatorNamespace: "",
    			watchedNamespaces: "",
    		},
    		{
    			operatorNamespace: "test",
    			watchedNamespaces: "test1",
    		},
    		{
    			operatorNamespace: "",
    			watchedNamespaces: "test4, test5",
    		},
    	}
    
    	kubeClients = MockKubernetesClients
    
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Tue Aug 29 14:15:33 GMT 2023
    - 6.4K bytes
    - Viewed (0)
  3. operator/cmd/mesh/operator-dump.go

    	cmd.PersistentFlags().StringSliceVar(&args.common.imagePullSecrets, "imagePullSecrets", nil, ImagePullSecretsHelpStr)
    	cmd.PersistentFlags().StringVar(&args.common.watchedNamespaces, "watchedNamespaces", constants.IstioSystemNamespace,
    		"The namespaces the operator controller watches, could be namespace list separated by comma, eg. 'ns1,ns2'")
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Tue May 23 17:08:31 GMT 2023
    - 3.6K bytes
    - Viewed (0)
  4. operator/cmd/mesh/operator-init.go

    	cmd.PersistentFlags().StringVar(&args.common.operatorNamespace, "operatorNamespace", operatorDefaultNamespace, OperatorNamespaceHelpstr)
    	cmd.PersistentFlags().StringVar(&args.common.watchedNamespaces, "watchedNamespaces", constants.IstioSystemNamespace,
    		"The namespaces the operator controller watches, could be namespace list separated by comma, eg. 'ns1,ns2'")
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 01:18:49 GMT 2024
    - 6.2K bytes
    - Viewed (0)
  5. manifests/charts/istio-operator/values.yaml

      # Default behavior: latest images will be Always else IfNotPresent.
      imagePullPolicy: ""
    
      # Used to replace istioNamespace to support operator watch multiple namespaces.
      watchedNamespaces: istio-system
      waitForResourcesTimeout: 300s
    
      # Used for helm2 to add the CRDs to templates.
      enableCRDTemplates: false
    
      # revision for the operator resources
      revision: ""
    
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  6. manifests/charts/istio-operator/templates/deployment.yaml

    {{- end }}
              resources:
    {{ toYaml .Values.operator.resources | trim | indent 12 }}
              env:
                - name: WATCH_NAMESPACE
                  value: {{.Values.watchedNamespaces | quote}}
                - name: LEADER_ELECTION_NAMESPACE
                  value: {{.Release.Namespace | quote}}
                - name: POD_NAME
                  valueFrom:
                    fieldRef:
    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)
  7. operator/cmd/mesh/manifest_shared_test.go

    	ocArgs := &operatorCommonArgs{
    		manifestsPath:     string(chartSource),
    		istioNamespace:    constants.IstioSystemNamespace,
    		watchedNamespaces: constants.IstioSystemNamespace,
    		operatorNamespace: operatorDefaultNamespace,
    		// placeholders, since the fake API server does not actually pull images and create pods.
    		hub: "fake hub",
    		tag: "fake tag",
    	}
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Tue Feb 20 22:39:28 GMT 2024
    - 11.7K bytes
    - Viewed (0)
  8. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    imagePullSecrets: [] # Specify image pull policy if default behavior isn't desired. # Default behavior: latest images will be Always else IfNotPresent. imagePullPolicy: "" # Used to replace istioNamespace to support operator watch multiple namespaces. watchedNamespaces: istio-system waitForResourcesTime: 300s # Used for helm2 to add the CRDs to templates. enableCRDTemplates: false # revision for the operator resources revision: "" # The number of old ReplicaSets to retain in operator deployment deploymentHistory:...
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 198.1K bytes
    - Viewed (1)
Back to top