117 lines
4.6 KiB
Markdown
117 lines
4.6 KiB
Markdown
### Kubernetes
|
|
Der folgende Repository beinhaltet die erstellten Definition des Kubernetes Orchestration Tools, die bei den Kursen `Udemy - Certified Kubernetes Administrator (CKA) with Practice Tests` und `Linux Foundation - Certified Kubernetes Administrator (CKA)` behandelt wurden.
|
|
|
|
```
|
|
.
|
|
├── abac-authorization-definition.json
|
|
├── abstimmung-app
|
|
│ ├── abstimmung-app-pod.yaml
|
|
│ ├── deployments
|
|
│ │ ├── abstimmung-app-deploy.yaml
|
|
│ │ ├── abstimmung-app-service.yaml
|
|
│ │ ├── ergebnisse-app-deploy.yaml
|
|
│ │ ├── ergebnisse-app-service.yaml
|
|
│ │ ├── postgres-deploy.yaml
|
|
│ │ ├── postgress-service.yaml
|
|
│ │ ├── redis-deploy.yaml
|
|
│ │ ├── redis-service.yaml
|
|
│ │ └── worker-deploy.yaml
|
|
│ ├── ergebnisse-app-pod.yaml
|
|
│ ├── postgres-pod.yaml
|
|
│ ├── redis-pod.yaml
|
|
│ └── worker-pod.yaml
|
|
├── all-deploy-services.yaml
|
|
├── ca.crt
|
|
├── ca.csr
|
|
├── ca.key
|
|
├── certificate-Signing-Request-Definition.yaml
|
|
├── clusterIP-service-definition.yml
|
|
├── cluster-role-user-adding-definition.yml
|
|
├── cluster-role-user-and-storage-adding-definition.yml
|
|
├── config-map.yml
|
|
├── daemon-set-definition.yml
|
|
├── daemonset-definition.yml
|
|
├── deployment-definition-with-node-affinity-2.yml
|
|
├── deployment-definition-with-node-affinity.yml
|
|
├── deployment-definition-with-recreate-strategy.yml
|
|
├── deployment-definition-with-rolingupdate-strategy.yml
|
|
├── deployment-definition.yml
|
|
├── deployment-definiton-webapp.yml
|
|
├── deployment-definiton.yaml
|
|
├── deployment-httpd-replicas.yml
|
|
├── deployment-with-service-account.yml
|
|
├── developer-role.yml
|
|
├── devuser-developer-binding.yml
|
|
├── Dockerfile
|
|
├── event-simulator.yml
|
|
├── ktop
|
|
├── kube-apiserver-with-basic-auth-file.yml
|
|
├── kube-apiserver.yml
|
|
├── kube-config-definition.yml
|
|
├── kube-config-with-namespaces-certifikates-definition-1.yml
|
|
├── kube-config-with-namespaces-certifikates-definition.yml
|
|
├── LFS258
|
|
│ ├── car-map.yaml
|
|
│ ├── cluster-creation.yaml
|
|
│ ├── cron-job-with-output.yaml
|
|
│ ├── customResource
|
|
│ │ ├── crd.yaml
|
|
│ │ └── new-crontab.yaml
|
|
│ ├── deployment-with-taint.yaml
|
|
│ ├── ds_changed_strategy.yaml
|
|
│ ├── ds.yaml
|
|
│ ├── favorite
|
|
│ ├── pods-into-vip-node.yaml
|
|
│ ├── primary
|
|
│ │ ├── black
|
|
│ │ ├── cyan
|
|
│ │ ├── magenta
|
|
│ │ └── yellow
|
|
│ ├── pvc.yaml
|
|
│ ├── rs.yaml
|
|
│ ├── secret.yaml
|
|
│ └── simpleshell.yaml
|
|
├── loadBalancer-service-definition.yml
|
|
├── namespace-dev-definition.yml
|
|
├── network-policy-definition-allowed-from-all-namespaces.yml
|
|
├── nginx-definition1.yaml
|
|
├── nginx-definition.yaml
|
|
├── nodePort-service-definition.yml
|
|
├── persistent-volume-claim-definition.yml
|
|
├── persistent-volume-definition.yml
|
|
├── pod-definition-dev-namespace.yml
|
|
├── pod-definition-multiple-containers.yml
|
|
├── pod-definition-nodeName.yml
|
|
├── pod-definition-with-commands-and-arguments-1.yml
|
|
├── pod-definition-with-commands-and-arguments.yml
|
|
├── pod-definition-with-commands.yml
|
|
├── pod-definition-with-config-map-variables-injection.yml
|
|
├── pod-definition-with-init-container.yml
|
|
├── pod-definition-with-random-generation-numbers-and-volume.yml
|
|
├── pod-definition_with_resource_limits.yaml
|
|
├── pod-definition-with-secret-reference.yml
|
|
├── pod-definition-with-toleration.yml
|
|
├── pod-definition.yml
|
|
├── pod-with-toleration-definiton-1.yml
|
|
├── pod-with-toleration-definiton-2.yml
|
|
├── postgres_with_env_variable.yaml
|
|
├── rc-definition.yml
|
|
├── reactjs-app
|
|
│ ├── frontend-deployment.yaml
|
|
│ └── frontend-node-port.yaml
|
|
├── README.md
|
|
├── replicaSet-definition.yaml
|
|
├── replicaset-definition.yml
|
|
├── replicaset-definiton.yml
|
|
├── replication_controller-definition.yaml
|
|
├── resource-quota-definition.yml
|
|
├── role-definition-kube-apiserver.yml
|
|
├── secret-definiton.yml
|
|
├── security-definiton-kube-apiserver.yml
|
|
├── service-definition.yaml
|
|
├── user-details.csv
|
|
└── user-token-details.csv
|
|
|
|
6 directories, 102 files
|
|
```
|