Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for Murray (0.37 sec)

  1. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                    type: array
                                  ports:
                                    description: Optional.
                                    items:
                                      type: string
                                    type: array
                                type: object
                            type: object
                          type: array
                        when:
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 18:46:49 GMT 2024
    - 570.3K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    array notHosts: description: Optional. items: type: string type: array notMethods: description: Optional. items: type: string type: array notPaths: description: Optional. items: type: string type: array notPorts: description: Optional. items: type: string type: array paths: description: Optional. items: type: string type: array ports: description: Optional. items: type: string type: array type: object type: object type: array when: description: Optional. items: properties: key: description: The name...
    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)
  3. common-protos/k8s.io/api/networking/v1/generated.proto

      optional int32 endPort = 3;
    }
    
    // NetworkPolicySpec provides the specification of a NetworkPolicy
    message NetworkPolicySpec {
      // podSelector selects the pods to which this NetworkPolicy object applies.
      // The array of ingress rules is applied to any pods selected by this field.
      // Multiple network policies can select the same set of pods. In this case,
      // the ingress rules for each are combined additively.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 25.2K bytes
    - Viewed (0)
  4. operator/cmd/mesh/install.go

    	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 {
    	// InFilenames is an array of paths to the input IstioOperator CR files.
    	InFilenames []string
    	// ReadinessTimeout is maximum time to wait for all Istio resources to be ready. wait must be true for this setting
    	// to take effect.
    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)
  5. common/scripts/metallb-native.yaml

                              values:
                                description: values is an array of string values. If the
                                  operator is In or NotIn, the values array must be non-empty.
                                  If the operator is Exists or DoesNotExist, the values
                                  array must be empty. This array is replaced during a
                                  strategic merge patch.
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Feb 23 23:56:31 GMT 2024
    - 63.9K bytes
    - Viewed (0)
  6. manifests/charts/gateway/values.schema.json

              "properties": {
                "enabled": {
                  "type": "boolean"
                }
              }
            },
            "tolerations": {
              "type": "array"
            },
            "topologySpreadConstraints": {
              "type": "array"
            },
            "networkGateway": {
              "type": "string"
            },
            "imagePullPolicy": {
              "type": "string",
              "enum": [
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jan 18 16:33:33 GMT 2024
    - 6.7K bytes
    - Viewed (0)
  7. operator/cmd/mesh/manifest-generate.go

    	"istio.io/istio/operator/pkg/name"
    	"istio.io/istio/operator/pkg/object"
    	"istio.io/istio/operator/pkg/util/clog"
    	"istio.io/istio/pkg/kube"
    )
    
    type ManifestGenerateArgs struct {
    	// InFilenames is an array of paths to the input IstioOperator CR files.
    	InFilenames []string
    	// OutFilename is the path to the generated output directory.
    	OutFilename string
    
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 01:18:49 GMT 2024
    - 8.5K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/core/v1/generated.proto

      optional string operator = 2;
    
      // An array of string values. If the operator is In or NotIn,
      // the values array must be non-empty. If the operator is Exists or DoesNotExist,
      // the values array must be empty. If the operator is Gt or Lt, the values
      // array must have a single element, which will be interpreted as an integer.
      // This array is replaced during a strategic merge patch.
      // +optional
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
  9. common/scripts/gobuild.sh

    GOBINARY=${GOBINARY:-go}
    GOPKG="$GOPATH/pkg"
    BUILDINFO=${BUILDINFO:-""}
    STATIC=${STATIC:-1}
    LDFLAGS=${LDFLAGS:--extldflags -static}
    GOBUILDFLAGS=${GOBUILDFLAGS:-""}
    # Split GOBUILDFLAGS by spaces into an array called GOBUILDFLAGS_ARRAY.
    IFS=' ' read -r -a GOBUILDFLAGS_ARRAY <<< "$GOBUILDFLAGS"
    
    GCFLAGS=${GCFLAGS:-}
    export CGO_ENABLED=${CGO_ENABLED:-0}
    
    if [[ "${STATIC}" !=  "1" ]];then
        LDFLAGS=""
    fi
    
    # gather buildinfo if not already provided
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Oct 21 14:08:46 GMT 2022
    - 2.4K bytes
    - Viewed (0)
  10. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // Valid operators are In, NotIn, Exists and DoesNotExist.
      optional string operator = 2;
    
      // values is an array of string values. If the operator is In or NotIn,
      // the values array must be non-empty. If the operator is Exists or DoesNotExist,
      // the values array must be empty. This array is replaced during a strategic
      // merge patch.
      // +optional
      repeated string values = 3;
    }
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 53.3K bytes
    - Viewed (0)
Back to top