Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hellyaxs/learningkubernetes
https://github.com/hellyaxs/learningkubernetes
containerization docker kind kubernetes
Last synced: 18 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/hellyaxs/learningkubernetes
- Owner: hellyaxs
- Created: 2024-06-21T20:00:56.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-07-17T22:22:50.000Z (6 months ago)
- Last Synced: 2024-07-18T02:19:13.699Z (6 months ago)
- Topics: containerization, docker, kind, kubernetes
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# learningKubernetes orquestration
> o objetivo aqui é aplicar codigos de diversas plataforma de orquestração de containers e entender qual usar em cada situação
### Comando basicos para Kubectl
```bash
kubectl get node|services|deployment|resplicaset|pods
``````bash
kubectl port-forward svc/my-service 8080:80
```> voce pode acesar o seus pods com port-forward usando os services ClusterIP e NodePort ou acessar o pod diretamente usando o comando:
```bash
kubectl port-forward pod/my-pod-name 8080:80
``````bash
kubectl exec -it my-pod-name --sh
```