-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(core): use Kind.name.yaml syntax to save (#38)
- Loading branch information
1 parent
b248750
commit 7243ab5
Showing
25 changed files
with
775 additions
and
794 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
23 changes: 23 additions & 0 deletions
23
examples/my-k8s-app/ClusterRole.ingress-nginx-admission.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRole | ||
metadata: | ||
name: ingress-nginx-admission | ||
annotations: | ||
helm.sh/hook: pre-install,pre-upgrade,post-install,post-upgrade | ||
helm.sh/hook-delete-policy: before-hook-creation,hook-succeeded | ||
labels: | ||
helm.sh/chart: ingress-nginx-4.11.3 | ||
app.kubernetes.io/name: ingress-nginx | ||
app.kubernetes.io/instance: ingress-nginx | ||
app.kubernetes.io/version: 1.11.3 | ||
app.kubernetes.io/part-of: ingress-nginx | ||
app.kubernetes.io/managed-by: Helm | ||
app.kubernetes.io/component: admission-webhook | ||
rules: | ||
- apiGroups: | ||
- admissionregistration.k8s.io | ||
resources: | ||
- validatingwebhookconfigurations | ||
verbs: | ||
- get | ||
- update |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRole | ||
metadata: | ||
labels: | ||
helm.sh/chart: ingress-nginx-4.11.3 | ||
app.kubernetes.io/name: ingress-nginx | ||
app.kubernetes.io/instance: ingress-nginx | ||
app.kubernetes.io/version: 1.11.3 | ||
app.kubernetes.io/part-of: ingress-nginx | ||
app.kubernetes.io/managed-by: Helm | ||
name: ingress-nginx | ||
rules: | ||
- apiGroups: | ||
- "" | ||
resources: | ||
- configmaps | ||
- endpoints | ||
- nodes | ||
- pods | ||
- secrets | ||
- namespaces | ||
verbs: | ||
- list | ||
- watch | ||
- apiGroups: | ||
- coordination.k8s.io | ||
resources: | ||
- leases | ||
verbs: | ||
- list | ||
- watch | ||
- apiGroups: | ||
- "" | ||
resources: | ||
- nodes | ||
verbs: | ||
- get | ||
- apiGroups: | ||
- "" | ||
resources: | ||
- services | ||
verbs: | ||
- get | ||
- list | ||
- watch | ||
- apiGroups: | ||
- networking.k8s.io | ||
resources: | ||
- ingresses | ||
verbs: | ||
- get | ||
- list | ||
- watch | ||
- apiGroups: | ||
- "" | ||
resources: | ||
- events | ||
verbs: | ||
- create | ||
- patch | ||
- apiGroups: | ||
- networking.k8s.io | ||
resources: | ||
- ingresses/status | ||
verbs: | ||
- update | ||
- apiGroups: | ||
- networking.k8s.io | ||
resources: | ||
- ingressclasses | ||
verbs: | ||
- get | ||
- list | ||
- watch | ||
- apiGroups: | ||
- discovery.k8s.io | ||
resources: | ||
- endpointslices | ||
verbs: | ||
- list | ||
- watch | ||
- get |
23 changes: 23 additions & 0 deletions
23
examples/my-k8s-app/ClusterRoleBinding.ingress-nginx-admission.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRoleBinding | ||
metadata: | ||
name: ingress-nginx-admission | ||
annotations: | ||
helm.sh/hook: pre-install,pre-upgrade,post-install,post-upgrade | ||
helm.sh/hook-delete-policy: before-hook-creation,hook-succeeded | ||
labels: | ||
helm.sh/chart: ingress-nginx-4.11.3 | ||
app.kubernetes.io/name: ingress-nginx | ||
app.kubernetes.io/instance: ingress-nginx | ||
app.kubernetes.io/version: 1.11.3 | ||
app.kubernetes.io/part-of: ingress-nginx | ||
app.kubernetes.io/managed-by: Helm | ||
app.kubernetes.io/component: admission-webhook | ||
roleRef: | ||
apiGroup: rbac.authorization.k8s.io | ||
kind: ClusterRole | ||
name: ingress-nginx-admission | ||
subjects: | ||
- kind: ServiceAccount | ||
name: ingress-nginx-admission | ||
namespace: nginx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRoleBinding | ||
metadata: | ||
labels: | ||
helm.sh/chart: ingress-nginx-4.11.3 | ||
app.kubernetes.io/name: ingress-nginx | ||
app.kubernetes.io/instance: ingress-nginx | ||
app.kubernetes.io/version: 1.11.3 | ||
app.kubernetes.io/part-of: ingress-nginx | ||
app.kubernetes.io/managed-by: Helm | ||
name: ingress-nginx | ||
roleRef: | ||
apiGroup: rbac.authorization.k8s.io | ||
kind: ClusterRole | ||
name: ingress-nginx | ||
subjects: | ||
- kind: ServiceAccount | ||
name: ingress-nginx | ||
namespace: nginx |
15 changes: 15 additions & 0 deletions
15
examples/my-k8s-app/ConfigMap.ingress-nginx-controller.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
labels: | ||
helm.sh/chart: ingress-nginx-4.11.3 | ||
app.kubernetes.io/name: ingress-nginx | ||
app.kubernetes.io/instance: ingress-nginx | ||
app.kubernetes.io/version: 1.11.3 | ||
app.kubernetes.io/part-of: ingress-nginx | ||
app.kubernetes.io/managed-by: Helm | ||
app.kubernetes.io/component: controller | ||
name: ingress-nginx-controller | ||
namespace: nginx | ||
data: | ||
allow-snippet-annotations: "false" |
125 changes: 125 additions & 0 deletions
125
examples/my-k8s-app/Deployment.ingress-nginx-controller.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
labels: | ||
helm.sh/chart: ingress-nginx-4.11.3 | ||
app.kubernetes.io/name: ingress-nginx | ||
app.kubernetes.io/instance: ingress-nginx | ||
app.kubernetes.io/version: 1.11.3 | ||
app.kubernetes.io/part-of: ingress-nginx | ||
app.kubernetes.io/managed-by: Helm | ||
app.kubernetes.io/component: controller | ||
name: ingress-nginx-controller | ||
namespace: nginx | ||
spec: | ||
selector: | ||
matchLabels: | ||
app.kubernetes.io/name: ingress-nginx | ||
app.kubernetes.io/instance: ingress-nginx | ||
app.kubernetes.io/component: controller | ||
replicas: 1 | ||
revisionHistoryLimit: 10 | ||
minReadySeconds: 0 | ||
template: | ||
metadata: | ||
labels: | ||
helm.sh/chart: ingress-nginx-4.11.3 | ||
app.kubernetes.io/name: ingress-nginx | ||
app.kubernetes.io/instance: ingress-nginx | ||
app.kubernetes.io/version: 1.11.3 | ||
app.kubernetes.io/part-of: ingress-nginx | ||
app.kubernetes.io/managed-by: Helm | ||
app.kubernetes.io/component: controller | ||
spec: | ||
dnsPolicy: ClusterFirst | ||
containers: | ||
- name: controller | ||
image: registry.k8s.io/ingress-nginx/controller:v1.11.3@sha256:d56f135b6462cfc476447cfe564b83a45e8bb7da2774963b00d12161112270b7 | ||
imagePullPolicy: IfNotPresent | ||
lifecycle: | ||
preStop: | ||
exec: | ||
command: | ||
- /wait-shutdown | ||
args: | ||
- /nginx-ingress-controller | ||
- --publish-service=$(POD_NAMESPACE)/ingress-nginx-controller | ||
- --election-id=ingress-nginx-leader | ||
- --controller-class=k8s.io/ingress-nginx | ||
- --ingress-class=nginx | ||
- --configmap=$(POD_NAMESPACE)/ingress-nginx-controller | ||
- --validating-webhook=:8443 | ||
- --validating-webhook-certificate=/usr/local/certificates/cert | ||
- --validating-webhook-key=/usr/local/certificates/key | ||
securityContext: | ||
runAsNonRoot: true | ||
runAsUser: 101 | ||
allowPrivilegeEscalation: false | ||
seccompProfile: | ||
type: RuntimeDefault | ||
capabilities: | ||
drop: | ||
- ALL | ||
add: | ||
- NET_BIND_SERVICE | ||
readOnlyRootFilesystem: false | ||
env: | ||
- name: POD_NAME | ||
valueFrom: | ||
fieldRef: | ||
fieldPath: metadata.name | ||
- name: POD_NAMESPACE | ||
valueFrom: | ||
fieldRef: | ||
fieldPath: metadata.namespace | ||
- name: LD_PRELOAD | ||
value: /usr/local/lib/libmimalloc.so | ||
livenessProbe: | ||
failureThreshold: 5 | ||
httpGet: | ||
path: /healthz | ||
port: 10254 | ||
scheme: HTTP | ||
initialDelaySeconds: 10 | ||
periodSeconds: 10 | ||
successThreshold: 1 | ||
timeoutSeconds: 1 | ||
readinessProbe: | ||
failureThreshold: 3 | ||
httpGet: | ||
path: /healthz | ||
port: 10254 | ||
scheme: HTTP | ||
initialDelaySeconds: 10 | ||
periodSeconds: 10 | ||
successThreshold: 1 | ||
timeoutSeconds: 1 | ||
ports: | ||
- name: http | ||
containerPort: 80 | ||
protocol: TCP | ||
- name: https | ||
containerPort: 443 | ||
protocol: TCP | ||
- name: metrics | ||
containerPort: 10254 | ||
protocol: TCP | ||
- name: webhook | ||
containerPort: 8443 | ||
protocol: TCP | ||
volumeMounts: | ||
- name: webhook-cert | ||
mountPath: /usr/local/certificates/ | ||
readOnly: true | ||
resources: | ||
requests: | ||
cpu: 100m | ||
memory: 90Mi | ||
nodeSelector: | ||
kubernetes.io/os: linux | ||
serviceAccountName: ingress-nginx | ||
terminationGracePeriodSeconds: 300 | ||
volumes: | ||
- name: webhook-cert | ||
secret: | ||
secretName: ingress-nginx-admission |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: my-nginx-deployment | ||
spec: | ||
selector: | ||
matchLabels: | ||
app: nginx | ||
template: | ||
metadata: | ||
labels: | ||
app: nginx | ||
spec: | ||
containers: | ||
- name: nginx | ||
image: nginx:alpine | ||
ports: | ||
- containerPort: 80 | ||
name: http |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
apiVersion: networking.k8s.io/v1 | ||
kind: IngressClass | ||
metadata: | ||
labels: | ||
helm.sh/chart: ingress-nginx-4.11.3 | ||
app.kubernetes.io/name: ingress-nginx | ||
app.kubernetes.io/instance: ingress-nginx | ||
app.kubernetes.io/version: 1.11.3 | ||
app.kubernetes.io/part-of: ingress-nginx | ||
app.kubernetes.io/managed-by: Helm | ||
app.kubernetes.io/component: controller | ||
name: nginx | ||
spec: | ||
controller: k8s.io/ingress-nginx |
57 changes: 57 additions & 0 deletions
57
examples/my-k8s-app/Job.ingress-nginx-admission-create.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
apiVersion: batch/v1 | ||
kind: Job | ||
metadata: | ||
name: ingress-nginx-admission-create | ||
namespace: nginx | ||
annotations: | ||
helm.sh/hook: pre-install,pre-upgrade | ||
helm.sh/hook-delete-policy: before-hook-creation,hook-succeeded | ||
labels: | ||
helm.sh/chart: ingress-nginx-4.11.3 | ||
app.kubernetes.io/name: ingress-nginx | ||
app.kubernetes.io/instance: ingress-nginx | ||
app.kubernetes.io/version: 1.11.3 | ||
app.kubernetes.io/part-of: ingress-nginx | ||
app.kubernetes.io/managed-by: Helm | ||
app.kubernetes.io/component: admission-webhook | ||
spec: | ||
template: | ||
metadata: | ||
name: ingress-nginx-admission-create | ||
labels: | ||
helm.sh/chart: ingress-nginx-4.11.3 | ||
app.kubernetes.io/name: ingress-nginx | ||
app.kubernetes.io/instance: ingress-nginx | ||
app.kubernetes.io/version: 1.11.3 | ||
app.kubernetes.io/part-of: ingress-nginx | ||
app.kubernetes.io/managed-by: Helm | ||
app.kubernetes.io/component: admission-webhook | ||
spec: | ||
containers: | ||
- name: create | ||
image: registry.k8s.io/ingress-nginx/kube-webhook-certgen:v1.4.4@sha256:a9f03b34a3cbfbb26d103a14046ab2c5130a80c3d69d526ff8063d2b37b9fd3f | ||
imagePullPolicy: IfNotPresent | ||
args: | ||
- create | ||
- --host=ingress-nginx-controller-admission,ingress-nginx-controller-admission.$(POD_NAMESPACE).svc | ||
- --namespace=$(POD_NAMESPACE) | ||
- --secret-name=ingress-nginx-admission | ||
env: | ||
- name: POD_NAMESPACE | ||
valueFrom: | ||
fieldRef: | ||
fieldPath: metadata.namespace | ||
securityContext: | ||
allowPrivilegeEscalation: false | ||
capabilities: | ||
drop: | ||
- ALL | ||
readOnlyRootFilesystem: true | ||
runAsNonRoot: true | ||
runAsUser: 65532 | ||
seccompProfile: | ||
type: RuntimeDefault | ||
restartPolicy: OnFailure | ||
serviceAccountName: ingress-nginx-admission | ||
nodeSelector: | ||
kubernetes.io/os: linux |
Oops, something went wrong.