Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,601 for erator (0.3 sec)

  1. staging/src/k8s.io/apimachinery/pkg/selection/operator.go

    limitations under the License.
    */
    
    package selection
    
    // Operator represents a key/field's relationship to value(s).
    // See labels.Requirement and fields.Requirement for more details.
    type Operator string
    
    const (
    	DoesNotExist Operator = "!"
    	Equals       Operator = "="
    	DoubleEquals Operator = "=="
    	In           Operator = "in"
    	NotEquals    Operator = "!="
    	NotIn        Operator = "notin"
    	Exists       Operator = "exists"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 14:09:48 UTC 2017
    - 1K bytes
    - Viewed (0)
  2. operator/cmd/mesh/operator.go

    )
    
    // OperatorCmd is a group of commands related to installation and management of the operator controller.
    func OperatorCmd(ctx cli.Context) *cobra.Command {
    	oc := &cobra.Command{
    		Use:   "operator",
    		Short: "Commands related to Istio operator controller.",
    		Long:  "The operator command installs, dumps, removes and shows the status of the operator controller.",
    	}
    
    	odArgs := &operatorDumpArgs{}
    	oiArgs := &operatorInitArgs{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:33 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. operator/docker/Dockerfile.operator

    # hadolint ignore=DL3006
    FROM ${BASE_DISTRIBUTION:-debug}
    
    # install operator binary
    ARG TARGETARCH
    COPY ${TARGETARCH:-amd64}/operator /usr/local/bin/operator
    
    # add operator manifests
    COPY manifests/ /var/lib/istio/manifests/
    
    USER 1337:1337
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 19 15:53:08 UTC 2022
    - 900 bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/operator/output/operator-init.yaml

    metadata:
      name: istio-operator
    subjects:
    - kind: ServiceAccount
      name: istio-operator
      namespace: operator-test-namespace
    roleRef:
      kind: ClusterRole
      name: istio-operator
      apiGroup: rbac.authorization.k8s.io
    ---
    
    
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      namespace: operator-test-namespace
      name: istio-operator
    spec:
      replicas: 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. operator/cmd/mesh/operator-common.go

    	"istio.io/istio/operator/pkg/helm"
    	"istio.io/istio/operator/pkg/name"
    	"istio.io/istio/operator/pkg/util"
    )
    
    type operatorCommonArgs struct {
    	// hub is the hub for the operator image.
    	hub string
    	// tag is the tag for the operator image.
    	tag string
    	// imagePullSecrets is an array of imagePullSecret to pull operator image from the private registry
    	imagePullSecrets []string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Dec 17 02:25:04 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  6. operator/cmd/mesh/operator-init.go

    	"strings"
    
    	"github.com/fatih/color"
    	"github.com/spf13/cobra"
    
    	"istio.io/api/operator/v1alpha1"
    	"istio.io/istio/istioctl/pkg/cli"
    	iopv1alpha1 "istio.io/istio/operator/pkg/apis/istio/v1alpha1"
    	"istio.io/istio/operator/pkg/name"
    	"istio.io/istio/operator/pkg/translate"
    	operatorutil "istio.io/istio/operator/pkg/util"
    	"istio.io/istio/operator/pkg/util/clog"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/config/labels"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/operator/output/operator-dump.yaml

    metadata:
      name: istio-operator
    subjects:
    - kind: ServiceAccount
      name: istio-operator
      namespace: operator-test-namespace
    roleRef:
      kind: ClusterRole
      name: istio-operator
      apiGroup: rbac.authorization.k8s.io
    ---
    
    
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      namespace: operator-test-namespace
      name: istio-operator
    spec:
      replicas: 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. operator/cmd/mesh/operator-dump.go

    	return &cobra.Command{
    		Use:   "dump",
    		Short: "Dumps the Istio operator controller manifest.",
    		Long:  "The dump subcommand dumps the Istio operator controller manifest.",
    		Args:  cobra.ExactArgs(0),
    		PreRunE: func(cmd *cobra.Command, args []string) error {
    			if !labels.IsDNS1123Label(odArgs.common.revision) && cmd.PersistentFlags().Changed("revision") {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/operator/output/operator-remove.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      namespace: operator-test-namespace
      name: istio-operator
    spec:
      replicas: 1
      selector:
        matchLabels:
          name: istio-operator
      template:
        metadata:
          labels:
            name: istio-operator
        spec:
          serviceAccountName: istio-operator
          containers:
            - name: istio-operator
              image: foo.io/istio/operator:1.2.3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 21 01:45:21 UTC 2020
    - 5.4K bytes
    - Viewed (0)
  10. operator/cmd/mesh/operator-remove.go

    	"os"
    
    	"github.com/fatih/color"
    	"github.com/spf13/cobra"
    
    	"istio.io/api/operator/v1alpha1"
    	"istio.io/istio/istioctl/pkg/cli"
    	iopv1alpha1 "istio.io/istio/operator/pkg/apis/istio/v1alpha1"
    	"istio.io/istio/operator/pkg/helmreconciler"
    	"istio.io/istio/operator/pkg/name"
    	"istio.io/istio/operator/pkg/translate"
    	"istio.io/istio/operator/pkg/util/clog"
    	"istio.io/istio/pkg/kube"
    )
    
    type operatorRemoveArgs struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top