mirror of
https://github.com/KevinMidboe/kazan.git
synced 2025-10-29 17:50:15 +00:00
Example kubenetes configuration collection
This commit is contained in:
14
examples/ingress-nginx/public-default-nginx-ingressClass.yml
Normal file
14
examples/ingress-nginx/public-default-nginx-ingressClass.yml
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
apiVersion: networking.k8s.io/v1
|
||||||
|
kind: IngressClass
|
||||||
|
metadata:
|
||||||
|
annotations:
|
||||||
|
ingressclass.kubernetes.io/is-default-class: "true"
|
||||||
|
kubectl.kubernetes.io/last-applied-configuration: |
|
||||||
|
{"apiVersion":"networking.k8s.io/v1","kind":"IngressClass","metadata":{"annotations":{"ingressclass.kubernetes.io/is-default-class":"true"},"name":"public"},"spec":{"controller":"k8s.io/ingress-nginx"}}
|
||||||
|
creationTimestamp: "2023-07-10T19:25:31Z"
|
||||||
|
generation: 1
|
||||||
|
name: public
|
||||||
|
resourceVersion: "48767"
|
||||||
|
uid: 66cbe263-99c4-4abf-bc0d-5f85c4e0470c
|
||||||
|
spec:
|
||||||
|
controller: k8s.io/ingress-nginx
|
||||||
11
examples/pvc-nfs.yml
Normal file
11
examples/pvc-nfs.yml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
---
|
||||||
|
apiVersion: v1
|
||||||
|
kind: PersistentVolumeClaim
|
||||||
|
metadata:
|
||||||
|
name: my-pvc
|
||||||
|
spec:
|
||||||
|
storageClassName: nfs-csi
|
||||||
|
accessModes: [ReadWriteOnce]
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
storage: 1Gi
|
||||||
Reference in New Issue
Block a user