You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
392 B
17 lines
392 B
2 years ago
|
# The following patch enables a conversion webhook for the CRD
|
||
|
apiVersion: apiextensions.k8s.io/v1
|
||
|
kind: CustomResourceDefinition
|
||
|
metadata:
|
||
|
name: apps.demo.mashibing.com
|
||
|
spec:
|
||
|
conversion:
|
||
|
strategy: Webhook
|
||
|
webhook:
|
||
|
clientConfig:
|
||
|
service:
|
||
|
namespace: system
|
||
|
name: webhook-service
|
||
|
path: /convert
|
||
|
conversionReviewVersions:
|
||
|
- v1
|