commit message from python script
This commit is contained in:
0
k8s/carpool/Dockerfile
Normal file → Executable file
0
k8s/carpool/Dockerfile
Normal file → Executable file
0
k8s/carpool/deployment.yaml
Normal file → Executable file
0
k8s/carpool/deployment.yaml
Normal file → Executable file
0
k8s/carpool/doku
Normal file → Executable file
0
k8s/carpool/doku
Normal file → Executable file
0
k8s/carpool/esentricar.sql
Normal file → Executable file
0
k8s/carpool/esentricar.sql
Normal file → Executable file
0
k8s/carpool/index.env
Normal file → Executable file
0
k8s/carpool/index.env
Normal file → Executable file
0
k8s/carpool/node-service.yaml
Normal file → Executable file
0
k8s/carpool/node-service.yaml
Normal file → Executable file
0
k8s/carpool/postgres-config.yaml
Normal file → Executable file
0
k8s/carpool/postgres-config.yaml
Normal file → Executable file
0
k8s/carpool/postgres-deploy.yaml
Normal file → Executable file
0
k8s/carpool/postgres-deploy.yaml
Normal file → Executable file
0
k8s/carpool/postgres-pv-claim.yaml
Normal file → Executable file
0
k8s/carpool/postgres-pv-claim.yaml
Normal file → Executable file
0
k8s/carpool/postgres-schema-cm.yaml
Normal file → Executable file
0
k8s/carpool/postgres-schema-cm.yaml
Normal file → Executable file
0
k8s/carpool/postgres-service.yaml
Normal file → Executable file
0
k8s/carpool/postgres-service.yaml
Normal file → Executable file
0
k8s/carpool/python_rest.py
Normal file → Executable file
0
k8s/carpool/python_rest.py
Normal file → Executable file
0
k8s/carpool/requirements.txt
Normal file → Executable file
0
k8s/carpool/requirements.txt
Normal file → Executable file
0
k8s/carpool/service.yaml
Normal file → Executable file
0
k8s/carpool/service.yaml
Normal file → Executable file
0
k8s/config_map
Normal file → Executable file
0
k8s/config_map
Normal file → Executable file
0
k8s/deployment
Normal file → Executable file
0
k8s/deployment
Normal file → Executable file
0
k8s/install_nginx
Normal file → Executable file
0
k8s/install_nginx
Normal file → Executable file
0
k8s/k8s_Object_Structure
Normal file → Executable file
0
k8s/k8s_Object_Structure
Normal file → Executable file
0
k8s/monitoring
Normal file → Executable file
0
k8s/monitoring
Normal file → Executable file
22
k8s/nginx/2/deployment-nginx.yaml
Executable file
22
k8s/nginx/2/deployment-nginx.yaml
Executable file
@@ -0,0 +1,22 @@
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
labels:
|
||||
app: web
|
||||
name: web
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
app: web
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: web
|
||||
spec:
|
||||
containers:
|
||||
- image: nginx
|
||||
name: nginx
|
||||
ports:
|
||||
- name: http
|
||||
containerPort: 80
|
||||
22
k8s/nginx/deployment-nginx.yaml
Executable file
22
k8s/nginx/deployment-nginx.yaml
Executable file
@@ -0,0 +1,22 @@
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
labels:
|
||||
app: nginx
|
||||
name: nginx
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
app: nginx
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: nginx
|
||||
spec:
|
||||
containers:
|
||||
- image: nginx
|
||||
name: nginx
|
||||
ports:
|
||||
- name: http
|
||||
containerPort: 80
|
||||
5
k8s/nginx/nginx-svc.yaml
Normal file → Executable file
5
k8s/nginx/nginx-svc.yaml
Normal file → Executable file
@@ -2,9 +2,8 @@ apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
creationTimestamp: null
|
||||
namespace: nginx
|
||||
labels:
|
||||
name: nginx
|
||||
app: nginx
|
||||
name: nginx
|
||||
spec:
|
||||
ports:
|
||||
@@ -12,6 +11,6 @@ spec:
|
||||
protocol: TCP
|
||||
targetPort: 80
|
||||
selector:
|
||||
run: nginx
|
||||
app: nginx
|
||||
status:
|
||||
loadBalancer: {}
|
||||
|
||||
0
k8s/nginx/nginx1.yaml
Normal file → Executable file
0
k8s/nginx/nginx1.yaml
Normal file → Executable file
0
k8s/nginx/nginx_namespace.yaml
Normal file → Executable file
0
k8s/nginx/nginx_namespace.yaml
Normal file → Executable file
4
k8s/nginx/nginx_pod.yaml
Normal file → Executable file
4
k8s/nginx/nginx_pod.yaml
Normal file → Executable file
@@ -8,10 +8,10 @@ metadata:
|
||||
spec:
|
||||
containers:
|
||||
- name: nginx
|
||||
image: nginx:1.19.3
|
||||
image: nginx
|
||||
resources:
|
||||
limits:
|
||||
memory: "128Mi"
|
||||
cpu: "500m"
|
||||
ports:
|
||||
- containerPort: 80
|
||||
- containerPort: 80
|
||||
|
||||
@@ -1,13 +0,0 @@
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: nginx
|
||||
namespace: nginx
|
||||
labels:
|
||||
name: nginx
|
||||
spec:
|
||||
ports:
|
||||
- protocol: TCP
|
||||
port: 80
|
||||
targetPort: 80
|
||||
Reference in New Issue
Block a user