commit message from python script

This commit is contained in:
2023-04-11 17:11:08 +02:00
parent 21d88c4537
commit b4c9068425
92 changed files with 51 additions and 22 deletions

0
__pycache__/python_docker.cpython-38.pyc Normal file → Executable file
View File

View File

0
carpool/.dockerignore Normal file → Executable file
View File

0
carpool/Dockerfile Normal file → Executable file
View File

0
carpool/car_1.json Normal file → Executable file
View File

0
carpool/car_2.json Normal file → Executable file
View File

0
carpool/docker-compose.yml Normal file → Executable file
View File

0
carpool/esentricar.sql Normal file → Executable file
View File

0
carpool/index.env Normal file → Executable file
View File

0
carpool/python_rest.py Normal file → Executable file
View File

0
carpool/requirements.txt Normal file → Executable file
View File

0
check_this Normal file → Executable file
View File

0
dive_check_dockerfile Normal file → Executable file
View File

0
docker_commands Normal file → Executable file
View File

0
docker_compose_notizen Normal file → Executable file
View File

0
docker_restapi Normal file → Executable file
View File

0
docker_sheets Normal file → Executable file
View File

0
example_start_treafik Normal file → Executable file
View File

0
first_con Normal file → Executable file
View File

0
get-docker.sh Normal file → Executable file
View File

0
git_sync/create_volume Normal file → Executable file
View File

0
git_sync/deployment Normal file → Executable file
View File

0
git_sync/git_project/HEAD Normal file → Executable file
View File

0
git_sync/git_project/config Normal file → Executable file
View File

0
git_sync/git_project/description Normal file → Executable file
View File

0
git_sync/git_project/info/exclude Normal file → Executable file
View File

0
git_sync/pvc Normal file → Executable file
View File

0
harbor_install Normal file → Executable file
View File

0
k3d/blue-green/doku Normal file → Executable file
View File

0
k3d/blue-green/nginx-svc.yaml Normal file → Executable file
View File

0
k3d/blue-green/nginx-v1.yaml Normal file → Executable file
View File

0
k3d/blue-green/nginx-v2.yaml Normal file → Executable file
View File

2
k3d/install_k3d Normal file → Executable file
View File

@@ -1,5 +1,5 @@
mkdir ~/k3d
#####
curl -s https://raw.githubusercontent.com/rancher/k3d/main/install.sh | bash
CLUSTER=cnbc
IP4=$(/sbin/ip -o -4 addr list br2 | awk '{print $4}' | cut -d/ -f1)

0
k3d/nginx1/deployment-nginx.yaml Normal file → Executable file
View File

0
k3d/only_install Normal file → Executable file
View File

0
k3d/pod_init/doku Normal file → Executable file
View File

1
k3d/registries.yml Normal file → Executable file
View File

@@ -1,6 +1,5 @@
mirrors:
docker.io:
endpoint:
- "http://192.168.1.246:5001"
- "https://mirror.gcr.io"
- "https://docker.io"

0
k3d/stress/deployment2.yaml Normal file → Executable file
View File

0
k3d/stress/doku Normal file → Executable file
View File

0
k3d/volumes/pv Normal file → Executable file
View File

0
k3d/volumes/pvc Normal file → Executable file
View File

0
k3d/whoami-pod.yaml Normal file → Executable file
View File

0
k3d/whoami4-pod.yaml Normal file → Executable file
View File

0
k8s/carpool/Dockerfile Normal file → Executable file
View File

0
k8s/carpool/deployment.yaml Normal file → Executable file
View File

0
k8s/carpool/doku Normal file → Executable file
View File

0
k8s/carpool/esentricar.sql Normal file → Executable file
View File

0
k8s/carpool/index.env Normal file → Executable file
View File

0
k8s/carpool/node-service.yaml Normal file → Executable file
View File

0
k8s/carpool/postgres-config.yaml Normal file → Executable file
View File

0
k8s/carpool/postgres-deploy.yaml Normal file → Executable file
View File

0
k8s/carpool/postgres-pv-claim.yaml Normal file → Executable file
View File

0
k8s/carpool/postgres-schema-cm.yaml Normal file → Executable file
View File

0
k8s/carpool/postgres-service.yaml Normal file → Executable file
View File

0
k8s/carpool/python_rest.py Normal file → Executable file
View File

0
k8s/carpool/requirements.txt Normal file → Executable file
View File

0
k8s/carpool/service.yaml Normal file → Executable file
View File

0
k8s/config_map Normal file → Executable file
View File

0
k8s/deployment Normal file → Executable file
View File

0
k8s/install_nginx Normal file → Executable file
View File

0
k8s/k8s_Object_Structure Normal file → Executable file
View File

0
k8s/monitoring Normal file → Executable file
View File

View 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
View 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
View 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
View File

0
k8s/nginx/nginx_namespace.yaml Normal file → Executable file
View File

2
k8s/nginx/nginx_pod.yaml Normal file → Executable file
View File

@@ -8,7 +8,7 @@ metadata:
spec:
containers:
- name: nginx
image: nginx:1.19.3
image: nginx
resources:
limits:
memory: "128Mi"

View File

@@ -1,13 +0,0 @@
---
apiVersion: v1
kind: Service
metadata:
name: nginx
namespace: nginx
labels:
name: nginx
spec:
ports:
- protocol: TCP
port: 80
targetPort: 80

0
k8s/pods Normal file → Executable file
View File

0
k8s/pvc Normal file → Executable file
View File

0
maven/Dockerfile Normal file → Executable file
View File

0
mysql/docker-compose.yml Normal file → Executable file
View File

0
mysql/web/Dockerfile Normal file → Executable file
View File

0
nginx/docker-compose.yml Normal file → Executable file
View File

0
nginx/htdocs/index.html Normal file → Executable file
View File

0
nginx/images_commands Normal file → Executable file
View File

0
portainer/docker-compose.yml Normal file → Executable file
View File

2
python_docker.py Normal file → Executable file
View File

@@ -23,4 +23,4 @@ def show_docker_con_img(input):
return output_list
print(show_docker_con_img("containers"))
#print(show_docker_con_img("images"))
print(show_docker_con_img("images"))

0
selinux_arch Normal file → Executable file
View File

0
traefik/doku Normal file → Executable file
View File

0
traefik/web-helm/.helmignore Normal file → Executable file
View File

0
traefik/web-helm/Chart.yaml Normal file → Executable file
View File

0
traefik/web-helm/templates/NOTES.txt Normal file → Executable file
View File

0
traefik/web-helm/templates/_helpers.tpl Normal file → Executable file
View File

0
traefik/web-helm/templates/deployment.yaml Normal file → Executable file
View File

0
traefik/web-helm/templates/hpa.yaml Normal file → Executable file
View File

0
traefik/web-helm/templates/ingress.yaml Normal file → Executable file
View File

0
traefik/web-helm/templates/service.yaml Normal file → Executable file
View File

0
traefik/web-helm/templates/serviceaccount.yaml Normal file → Executable file
View File

0
traefik/web-helm/templates/tests/test-connection.yaml Normal file → Executable file
View File

0
traefik/web-helm/values.yaml Normal file → Executable file
View File