docs: add all untracked content
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
title: 01-base-helm
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-09T15:06:22.191Z
|
||||
date: 2023-11-09T15:06:26.646Z
|
||||
tags: helm
|
||||
editor: markdown
|
||||
dateCreated: 2023-11-08T08:24:36.599Z
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
title: 02-video-app-metadata
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-09T10:02:30.373Z
|
||||
date: 2023-11-09T10:02:36.449Z
|
||||
tags:
|
||||
editor: markdown
|
||||
dateCreated: 2023-11-08T10:42:51.395Z
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
title: 03-video-spec
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-09T14:12:51.136Z
|
||||
date: 2023-11-09T14:12:57.049Z
|
||||
tags: helm
|
||||
editor: markdown
|
||||
dateCreated: 2023-11-09T10:06:13.204Z
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
title: 04-video-svc-ingress
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-09T14:58:52.878Z
|
||||
date: 2023-11-09T14:58:58.607Z
|
||||
tags:
|
||||
editor: markdown
|
||||
dateCreated: 2023-11-09T14:11:37.963Z
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
title: 05-video-cm
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-09T15:05:32.795Z
|
||||
date: 2023-11-09T15:05:38.914Z
|
||||
tags:
|
||||
editor: markdown
|
||||
dateCreated: 2023-11-09T15:05:32.795Z
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
title: 06-video-final
|
||||
description:
|
||||
published: true
|
||||
date: 2023-11-09T15:17:21.129Z
|
||||
date: 2023-11-09T15:17:27.035Z
|
||||
tags:
|
||||
editor: markdown
|
||||
dateCreated: 2023-11-09T15:17:21.129Z
|
||||
|
||||
60
DevOps/Helm/Learn-by-Krukov/manifests/deployment-test.yaml
Normal file
60
DevOps/Helm/Learn-by-Krukov/manifests/deployment-test.yaml
Normal file
@@ -0,0 +1,60 @@
|
||||
---
|
||||
kind: Deployment
|
||||
apiVersion: apps/v1
|
||||
metadata:
|
||||
name: openresty
|
||||
labels:
|
||||
k8s-app: openresty
|
||||
annotations:
|
||||
reloader.stakater.com/auto: "true"
|
||||
configmap.reloader.stakater.com/reload: "openresty"
|
||||
spec:
|
||||
replicas: 2
|
||||
revisionHistoryLimit: 3
|
||||
selector:
|
||||
matchLabels:
|
||||
k8s-app: openresty
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
k8s-app: openresty
|
||||
spec:
|
||||
containers:
|
||||
- name: openresty
|
||||
image: openresty/openresty:centos-rpm
|
||||
imagePullPolicy: IfNotPresent
|
||||
ports:
|
||||
- containerPort: 80
|
||||
name: http
|
||||
readinessProbe:
|
||||
httpGet:
|
||||
path: /index.html
|
||||
port: http
|
||||
initialDelaySeconds: 5
|
||||
periodSeconds: 15
|
||||
livenessProbe:
|
||||
httpGet:
|
||||
path: /index.html
|
||||
port: http
|
||||
initialDelaySeconds: 5
|
||||
periodSeconds: 15
|
||||
timeoutSeconds: 5
|
||||
resources:
|
||||
limits:
|
||||
cpu: "0.2"
|
||||
memory: "400Mi"
|
||||
requests:
|
||||
cpu: "0.1"
|
||||
memory: "200Mi"
|
||||
volumeMounts:
|
||||
- name: html
|
||||
mountPath: /usr/local/openresty/nginx/html/
|
||||
- name: config
|
||||
mountPath: /etc/nginx/conf.d/
|
||||
volumes:
|
||||
- name: html
|
||||
configMap:
|
||||
name: openresty-html
|
||||
- name: config
|
||||
configMap:
|
||||
name: openresty-conf
|
||||
60
DevOps/Helm/Learn-by-Krukov/manifests/deployment.yaml
Normal file
60
DevOps/Helm/Learn-by-Krukov/manifests/deployment.yaml
Normal file
@@ -0,0 +1,60 @@
|
||||
---
|
||||
kind: Deployment
|
||||
apiVersion: apps/v1
|
||||
metadata:
|
||||
name: openresty
|
||||
labels:
|
||||
k8s-app: openresty
|
||||
annotations:
|
||||
reloader.stakater.com/auto: "true"
|
||||
configmap.reloader.stakater.com/reload: "openresty"
|
||||
spec:
|
||||
replicas: 2
|
||||
revisionHistoryLimit: 3
|
||||
selector:
|
||||
matchLabels:
|
||||
k8s-app: openresty
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
k8s-app: openresty
|
||||
spec:
|
||||
containers:
|
||||
- name: openresty
|
||||
image: openresty/openresty:centos-rpm
|
||||
imagePullPolicy: IfNotPresent
|
||||
ports:
|
||||
- containerPort: 80
|
||||
name: http
|
||||
readinessProbe:
|
||||
httpGet:
|
||||
path: /index.html
|
||||
port: http
|
||||
initialDelaySeconds: 5
|
||||
periodSeconds: 15
|
||||
livenessProbe:
|
||||
httpGet:
|
||||
path: /index.html
|
||||
port: http
|
||||
initialDelaySeconds: 5
|
||||
periodSeconds: 15
|
||||
timeoutSeconds: 5
|
||||
resources:
|
||||
limits:
|
||||
cpu: "0.2"
|
||||
memory: "400Mi"
|
||||
requests:
|
||||
cpu: "0.1"
|
||||
memory: "200Mi"
|
||||
volumeMounts:
|
||||
- name: html
|
||||
mountPath: /usr/local/openresty/nginx/html/
|
||||
- name: config
|
||||
mountPath: /etc/nginx/conf.d/
|
||||
volumes:
|
||||
- name: html
|
||||
configMap:
|
||||
name: openresty-html
|
||||
- name: config
|
||||
configMap:
|
||||
name: openresty-conf
|
||||
Reference in New Issue
Block a user