Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 196 for Cannon (0.16 sec)

  1. common-protos/k8s.io/api/events/v1/generated.proto

      // reportingController is the name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`.
      // This field cannot be empty for new Events.
      optional string reportingController = 4;
    
      // reportingInstance is the ID of the controller instance, e.g. `kubelet-xyzf`.
      // This field cannot be empty for new Events and it can have at most 128 characters.
      optional string reportingInstance = 5;
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 5.5K bytes
    - Viewed (0)
  2. manifests/helm-profiles/README.md

    For details, see `copy-templates` Makefile target, and `manifests/zzz_profile.yaml`.
    
    Any changes to this folder should have a `make copy-templates` applied afterwards.
    
    Warning: unlike the `IstioOperator` profiles, these profiles cannot enable or disable certain components.
    As a result, users still need to ensure they install the appropriate charts to use a profile correctly.
    Plain Text
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 708 bytes
    - Viewed (0)
  3. istioctl/pkg/dashboard/dashboard_test.go

    			WantException:  true,
    		},
    		{ // case 12
    			Args:           strings.Split("envoy --browser=false --selector app=example pod-123456-7890", " "),
    			ExpectedRegexp: regexp.MustCompile(".*Error: name cannot be provided when a selector is specified"),
    			WantException:  true,
    		},
    		{ // case 13
    			Args:           strings.Split("--browser=false controlz --selector app=example", " "),
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Nov 21 01:17:24 GMT 2023
    - 4.3K bytes
    - Viewed (0)
  4. istioctl/pkg/workload/testdata/vmconfig/ipv6/workloadgroup.yaml

    metadata:
      name: foo
      namespace: bar
    spec:
      metadata:
        annotations:
          proxy.istio.io/config: |-
            proxyMetadata:
              # this should override the value from the global meshconfig
              PROXY_CONFIG_ANNOT_VALUE: bar
        labels: {}
      template:
        ports: {}
        serviceAccount: vm-serviceaccount
      probe:
        httpGet:
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jun 15 15:02:17 GMT 2023
    - 377 bytes
    - Viewed (0)
  5. istioctl/pkg/workload/testdata/vmconfig/ipv4/meshconfig.yaml

    defaultConfig:
      proxyMetadata:
        # should be overridden by the command
        ISTIO_META_DNS_CAPTURE: "false"
        # should be overridden by the annotation on the WorkloadGroup
        PROXY_CONFIG_ANNOT_VALUE: "foo"
        # should be in the final cluster.env/mesh.yaml
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jun 15 15:02:17 GMT 2023
    - 300 bytes
    - Viewed (0)
  6. bin/retry.sh

          else
            script --flush --quiet --return "${tmpFile}" --command "${*}"
          fi
        else
          # if we aren't a TTY, run directly as script will always run with a tty, which may output content that
          # we cannot display
          set -o pipefail; "$@" 2>&1 | tee "${tmpFile}"
        fi
        # shellcheck disable=SC2181
        if [[ $? == 0 ]]; then
          break
        fi
        if ! grep -Eq "${failureRegex}" "${tmpFile}"; then
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Jun 11 16:08:08 GMT 2021
    - 2K bytes
    - Viewed (0)
  7. istioctl/pkg/kubeinject/kubeinject_test.go

    				"--meshConfigFile testdata/mesh-config.yaml"+
    					" --injectConfigFile testdata/inject-config.yaml -f testdata/deployment/hello-with-proxyconfig-anno.yaml"+
    					" --valuesFile testdata/inject-values.yaml",
    				" "),
    			GoldenFilename: "testdata/deployment/hello-with-proxyconfig-anno.yaml.injected",
    		},
    	}
    
    	kubeInject := InjectCommand(cli.NewFakeContext(nil))
    	for i, c := range cases {
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jun 15 15:02:17 GMT 2023
    - 3.4K bytes
    - Viewed (0)
  8. istioctl/pkg/describe/describe_test.go

    	}
    }
    
    func TestGetRevisionFromPodAnnotation(t *testing.T) {
    	cases := []struct {
    		anno klabels.Set
    
    		expected string
    	}{
    		{
    			anno: klabels.Set{
    				apiannotation.SidecarStatus.Name: "",
    			},
    			expected: "",
    		},
    		{
    			anno:     klabels.Set{},
    			expected: "",
    		},
    		{
    			anno: klabels.Set{
    				apiannotation.SidecarStatus.Name: `
    				{
    					"initContainers": [
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Mar 28 09:54:01 GMT 2024
    - 30.4K bytes
    - Viewed (0)
  9. istioctl/pkg/tag/tag.go

    	webhooks, err := GetWebhooksWithTag(ctx, kubeClient, tagName)
    	if err != nil {
    		return fmt.Errorf("failed to retrieve tag with name %s: %v", tagName, err)
    	}
    	if len(webhooks) == 0 {
    		return fmt.Errorf("cannot remove tag %q: cannot find MutatingWebhookConfiguration for tag", tagName)
    	}
    
    	taggedNamespaces, err := GetNamespacesWithTag(ctx, kubeClient, tagName)
    	if err != nil {
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 02 08:32:06 GMT 2024
    - 16.3K bytes
    - Viewed (0)
  10. bin/build_ztunnel.sh

      if command -v wget > /dev/null; then
        DOWNLOAD_COMMAND="wget -qO -"
        return
      fi
      echo wget is not installed.
    
      echo Error: curl is not installed or does not support https, wget is not installed. \
           Cannot download envoy. Please install wget or add support of https to curl.
      exit 1
    }
    
    # Params:
    #   $1: The URL of the ztunnel binary to be downloaded.
    #   $2: The full path of the output binary.
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 02 21:46:06 GMT 2024
    - 5K bytes
    - Viewed (0)
Back to top