Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for CustomResource (0.15 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/etcd_test.go

    	defer server.Terminate(t)
    	defer storage.CustomResource.Store.DestroyFunc()
    	test := registrytest.New(t, storage.CustomResource.Store)
    	test.TestList(validNewCustomResource())
    }
    
    func TestDelete(t *testing.T) {
    	storage, server := newStorage(t)
    	defer server.Terminate(t)
    	defer storage.CustomResource.Store.DestroyFunc()
    	test := registrytest.New(t, storage.CustomResource.Store)
    	test.TestDelete(validNewCustomResource())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/validation.go

    // `old` to `new` against the schema in the CustomResourceDefinition.
    // Both customResource and old represent a JSON data structures.
    //
    // If feature `CRDValidationRatcheting` is disabled, this behaves identically to
    // ValidateCustomResource(customResource).
    func ValidateCustomResourceUpdate(fldPath *field.Path, customResource, old interface{}, validator SchemaValidator, options ...ValidationOption) field.ErrorList {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 18:23:28 UTC 2023
    - 15K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/etcd.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package customresource
    
    import (
    	"context"
    	"fmt"
    	"strings"
    
    	autoscalingv1 "k8s.io/api/autoscaling/v1"
    	apierrors "k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  4. operator/cmd/mesh/operator-init.go

    		}
    	}
    
    	if err := applyManifest(kubeClient, client, mstr, name.IstioOperatorComponentName, opts, iop, l); err != nil {
    		l.LogAndFatal(err)
    	}
    
    	if customResource != "" {
    		if err := applyManifest(kubeClient, client, customResource, name.IstioOperatorComponentName, opts, iop, l); err != nil {
    			l.LogAndFatal(err)
    		}
    	}
    
    	l.LogAndPrint(color.New(color.FgGreen).Sprint("✔ ") + installationCompleteStr)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/strategy.go

    }
    
    // PrepareForCreate clears the status of a CustomResource before creation.
    func (a customResourceStrategy) PrepareForCreate(ctx context.Context, obj runtime.Object) {
    	if a.status != nil {
    		customResourceObject := obj.(*unstructured.Unstructured)
    		customResource := customResourceObject.UnstructuredContent()
    
    		// create cannot set status
    		delete(customResource, "status")
    	}
    
    	accessor, _ := meta.Accessor(obj)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 21:22:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  6. operator/cmd/mesh/shared.go

    	}
    	return flags
    }
    
    // getCRAndNamespaceFromFile returns the CR name and istio namespace from a file containing an IstioOperator CR.
    func getCRAndNamespaceFromFile(filePath string, l clog.Logger) (customResource string, istioNamespace string, err error) {
    	if filePath == "" {
    		return "", "", nil
    	}
    
    	_, mergedIOPS, err := manifest.GenerateConfig([]string{filePath}, nil, false, nil, l)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 29 02:29:02 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. releasenotes/notes/enable-enhanced-scope.yaml

    upgradeNotes:
    - title: Default value of the feature flag `ENHANCED_RESOURCE_SCOPING` to true
      content: |
        `ENHANCED_RESOURCE_SCOPING` is enabled by default. This means that the pilot will processes only the Istio CustomResource configurations that are in 
        scope of what is specified from meshConfig.discoverySelectors. Root-ca certificate distribution is also affected.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:43:09 UTC 2024
    - 653 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types.go

    	// Only JSON paths without the array notation are allowed.
    	// Must be a JSON Path under .spec.
    	// If there is no value under the given path in the CustomResource, the /scale subresource will return an error on GET.
    	SpecReplicasPath string
    	// StatusReplicasPath defines the JSON path inside of a CustomResource that corresponds to Scale.Status.Replicas.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler_test.go

    		u.SetName("marker")
    		if item, err := crdInfo.storages["v1beta1"].CustomResource.Create(ctx, u, validateFunc, &metav1.CreateOptions{}); err != nil {
    			t.Fatal(err)
    		} else {
    			startResourceVersion = item.(*unstructured.Unstructured).GetResourceVersion()
    		}
    		if _, _, err := crdInfo.storages["v1beta1"].CustomResource.Delete(ctx, u.GetName(), validateFunc, &metav1.DeleteOptions{}); err != nil {
    			t.Fatal(err)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 13 15:27:39 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/cel/config.go

    	PerCallLimit = 1000000
    
    	// RuntimeCELCostBudget is the overall cost budget for runtime CEL validation cost per ValidatingAdmissionPolicyBinding or CustomResource
    	// current RuntimeCELCostBudget gives roughly 1 seconds for the validation
    	RuntimeCELCostBudget = 10000000
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:28:26 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top