https://github.com/hellyaxs/learningkubernetes
Meu material de Apoio sobre kubernetes e cultura devops
https://github.com/hellyaxs/learningkubernetes
containerization devops docker dockerswarm helm kubernetes rancher
Last synced: 6 months ago
JSON representation
Meu material de Apoio sobre kubernetes e cultura devops
- Host: GitHub
- URL: https://github.com/hellyaxs/learningkubernetes
- Owner: hellyaxs
- Created: 2024-06-21T20:00:56.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-17T22:22:50.000Z (almost 2 years ago)
- Last Synced: 2025-06-03T21:12:03.746Z (11 months ago)
- Topics: containerization, devops, docker, dockerswarm, helm, kubernetes, rancher
- 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
```