Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for crs (0.02 sec)

  1. pkg/kube/inject/inject.go

    		patchBytes, err = injector.Inject(pod, namespace)
    	}
    	if err != nil {
    		return nil, err
    	}
    	// TODO(Monkeyanator) istioctl injection still applies just the pod annotation since we don't have
    	// the ProxyConfig CRs here.
    	if pca, f := metadata.GetAnnotations()[annotation.ProxyConfig.Name]; f {
    		var merr error
    		meshconfig, merr = mesh.ApplyProxyConfig(pca, meshconfig)
    		if merr != nil {
    			return nil, merr
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (1)
  2. operator/cmd/mesh/manifest-generate_test.go

    	_, err := runManifestGenerate([]string{inPathBase}, "", liveCharts, []string{"templates/deployment.yaml"})
    	if !strings.Contains(err.Error(), "contains multiple IstioOperator CRs, only one per file is supported") {
    		t.Fatalf("got %v, expected error for file with multiple IOPs", err)
    	}
    }
    
    func TestBareValues(t *testing.T) {
    	inPathBase := filepath.Join(testDataDir, "input/bare_values.yaml")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.27.md

    - [alpha: kubectl apply --prune --applyset] Enabled certain custom resources (CRs) to be used as `ApplySet` parent objects. To enable this for a given CR, apply the label `applyset.kubernetes.io/is-parent-type: true` to the CustomResourceDefinition (CRD) that defines it. ([#116353](https://github.com/kubernetes/kubernetes/pull/116353),...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
Back to top