mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-31 23:37:01 +00:00
13 lines
292 B
YAML
13 lines
292 B
YAML
# Simple test that errors should not block apply of valid
|
|
# resources. The ConfigMap should successfully apply, while
|
|
# the custom resource fails because the CRD is missing.
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: foo
|
|
---
|
|
apiVersion: example.com/v1
|
|
kind: Bogus
|
|
metadata:
|
|
name: foo
|