Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for CRs (0.04 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/finalizer/crd_finalizer.go

    		{Group: "apiextensions.k8s.io", Resource: "customresourcedefinitions"}: true,
    	}
    }
    
    // CRDFinalizer is a controller that finalizes the CRD by deleting all the CRs associated with it.
    type CRDFinalizer struct {
    	crdClient      client.CustomResourceDefinitionsGetter
    	crClientGetter CRClientGetter
    
    	crdLister listers.CustomResourceDefinitionLister
    	crdSynced cache.InformerSynced
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/fieldselector_test.go

    		}
    	}
    
    	shirtv1beta1Client := dynamicClient.Resource(schema.GroupVersionResource{Group: crd.Spec.Group, Version: crd.Spec.Versions[0].Name, Resource: crd.Spec.Names.Plural})
    
    	// read CRs with the v1beta1 client and
    	// wait until conversion webhook is called the first time
    	if err := wait.PollUntilContextTimeout(ctx, time.Millisecond*100, wait.ForeverTestTimeout, true, func(ctx context.Context) (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 15:53:03 UTC 2024
    - 27K bytes
    - Viewed (0)
  3. 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 (0)
  4. 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)
  5. 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