1
0
Fork 0

Support empty value for core Kubernetes API group

This commit is contained in:
Romain 2025-01-03 09:56:04 +01:00 committed by GitHub
parent e20409676a
commit 139f929ec8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 17 additions and 4 deletions

View file

@ -58,15 +58,18 @@ metadata:
namespace: default
spec:
targetRefs:
- group: core
- group: ""
kind: Service
name: whoami
validation:
hostname: whoami
caCertificateRefs:
- group: core
- group: ""
kind: ConfigMap
name: ca-file
- group: core
kind: ConfigMap
name: ca-file-2
---
apiVersion: v1
@ -76,3 +79,12 @@ metadata:
namespace: default
data:
ca.crt: "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0="
---
apiVersion: v1
kind: ConfigMap
metadata:
name: ca-file-2
namespace: default
data:
ca.crt: "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0="