Auto-scaling. Automatically scale containerized applications and their resources up or down based on usage.
Lifecycle management. Automate deployments and updates with the ability to: ...
Declarative model. ...
Resilience and self-healing. ...
Persistent storage. ...
Load balancing. ...
DevSecOps support.
xxxxxxxxxx
apiVersion: v1 # Kubernetes API version
kind: Service # Kubernetes resource kind we are creating
metadata: # Metadata of the resource kind we are creating
name: springboot-k8s-svc
spec:
selector:
app: spring-boot-k8s
ports:
- protocol: "TCP"
port: 8080 # The port that the service is running on in the cluster
targetPort: 8080 # The port exposed by the service
type: NodePort # type of the service.
https://www.vmware.com/topics/glossary/content/kubernetes.html
xxxxxxxxxx
Kubernetes Features
Auto-scaling. Automatically scale containerized applications and their resources up or down based on usage.
Lifecycle management. Automate deployments and updates with the ability to:
Declarative model.
Resilience and self-healing.
Persistent storage.
Load balancing.
DevSecOps support.