...

Text file src/k8s.io/kubernetes/hack/testdata/multi-resource-2.yaml

Documentation: k8s.io/kubernetes/hack/testdata

     1# Simple test that errors should not block apply of valid
     2# resources. The ConfigMap should successfully apply, while
     3# the custom resource fails because the CRD is missing.
     4apiVersion: v1
     5kind: ConfigMap
     6metadata:
     7  name: foo
     8---
     9apiVersion: example.com/v1
    10kind: Bogus
    11metadata:
    12  name: foo

View as plain text