Kubernetes Concept
basics building block on kubernetes of today's workshop
Manifests
apiVersion: v1
kind: Service
metadata:
# Name of the service
name: wonderfulapp-service
spec:
# Route traffic to any Pods matching these labels
selector:
app: wonderfulapp
environment: dev
ports:
# publish TCP port 80, and expect pods to be listening on the same port
- protocol: TCP
port: 80Kubernetes Objects used in this hands-on
Anatomie of kubernetes external request

Last updated