Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,054 for Operator (0.2 sec)

  1. manifests/charts/istio-operator/templates/clusterrole_binding.yaml

    apiVersion: rbac.authorization.k8s.io/v1
    metadata:
      name: istio-operator{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
    subjects:
    - kind: ServiceAccount
      name: istio-operator{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
      namespace: {{.Release.Namespace}}
    roleRef:
      kind: ClusterRole
      name: istio-operator{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jul 28 18:55:36 GMT 2021
    - 498 bytes
    - Viewed (0)
  2. operator/cmd/mesh/manifest_shared_test.go

    	"istio.io/istio/istioctl/pkg/cli"
    	"istio.io/istio/operator/pkg/apis/istio/v1alpha1"
    	"istio.io/istio/operator/pkg/cache"
    	"istio.io/istio/operator/pkg/helmreconciler"
    	"istio.io/istio/operator/pkg/manifest"
    	"istio.io/istio/operator/pkg/name"
    	"istio.io/istio/operator/pkg/object"
    	"istio.io/istio/operator/pkg/util/clog"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/kube"
    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)
  3. operator/cmd/mesh/root.go

    	MaxConcurrentReconcilesFlagHelpStr = `Defines the concurrency limit for operator to reconcile IstioOperatorSpec in parallel. Default value is 1.`
    	HubFlagHelpStr                     = `The hub for the operator controller image.`
    	TagFlagHelpStr                     = `The tag for the operator controller image.`
    	ImagePullSecretsHelpStr            = `The imagePullSecrets are used to pull the operator image from the private registry,
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 01:18:49 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  4. manifests/charts/istio-operator/templates/service.yaml

    apiVersion: v1
    kind: Service
    metadata:
      namespace: {{.Release.Namespace}}
      labels:
        name: istio-operator
      name: istio-operator{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
    spec:
      ports:
      - name: http-metrics
        port: 8383
        targetPort: 8383
        protocol: TCP
      selector:
        name: istio-operator
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jul 28 18:55:36 GMT 2021
    - 337 bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/UrlComponentEncodingTester.kt

          override fun encodedValue(url: HttpUrl): String = url.encodedUsername
    
          override operator fun set(
            builder: HttpUrl.Builder,
            value: String,
          ) {
            builder.username(value)
          }
    
          override operator fun get(url: HttpUrl): String = url.username
        },
    
        PASSWORD {
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 12.3K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/common/help.jsp

    		"last_modified", and they are customizable.
    	</dd>
    	<dt>AND</dt>
    	<dd>
    		AND operator is the default conjunction operator. You can omit it from
    		a query. AND operator matches documents where both terms exist
    		anywhere in the text of a single document.
    		<pre>Fess AND CodeLibs</pre>
    	</dd>
    	</dd>
    	<dt>OR</dt>
    	<dd>
    		OR operator matches documents where any terms exist anywhere in the
    		text of a single document.
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Mon Feb 26 14:01:31 GMT 2018
    - 2.4K bytes
    - Viewed (0)
  7. cmd/postpolicyform.go

    					}
    				}
    				operator, matchType, value := toLowerString(condt[0]), toLowerString(condt[1]), toString(condt[2])
    				if !strings.HasPrefix(matchType, "$") {
    					return parsedPolicy, fmt.Errorf("Invalid according to Policy: Policy Condition failed: [%s, %s, %s]", operator, matchType, value)
    				}
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Fri Apr 19 16:45:54 GMT 2024
    - 12.2K bytes
    - Viewed (0)
  8. manifests/charts/istio-cni/templates/clusterrole.yaml

    kind: ClusterRole
    metadata:
      name: istio-cni
      labels:
        app: istio-cni
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
        operator.istio.io/component: "Cni"
    rules:
    - apiGroups: [""]
      resources: ["pods","nodes","namespaces"]
      verbs: ["get", "list", "watch"]
    ---
    {{- if .Values.cni.repair.enabled }}
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Dec 20 22:14:13 GMT 2023
    - 2K bytes
    - Viewed (0)
  9. operator/cmd/mesh/install.go

    	"istio.io/istio/operator/pkg/util/clog"
    	"istio.io/istio/operator/pkg/util/progress"
    	"istio.io/istio/operator/pkg/verifier"
    	pkgversion "istio.io/istio/operator/pkg/version"
    	operatorVer "istio.io/istio/operator/version"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/config/labels"
    	"istio.io/istio/pkg/kube"
    )
    
    type InstallArgs struct {
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 01:18:49 GMT 2024
    - 15.2K bytes
    - Viewed (0)
  10. manifests/charts/gateways/istio-egress/templates/injected-deployment.yaml

      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"
    spec:
    {{- if not $gateway.autoscaleEnabled }}
    {{- if $gateway.replicaCount }}
      replicas: {{ $gateway.replicaCount }}
    {{- end }}
    {{- end }}
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 5K bytes
    - Viewed (0)
Back to top