Posts

Showing posts from September, 2017

Production Ready Container Orchestration

Kubernetes 1.8 - Production Ready Container Orchestration Kubernetes had evolved from an interesting Google project to the de facto standard for container orchestration. Version 1.8 brought the stability and features that made enterprise adoption not just possible, but inevitable. The introduction of stable RBAC was a game-changer for enterprise adoption. Finally, we could implement proper security controls and give teams access to exactly what they needed—nothing more, nothing less. yaml apiVersion: rbac.authorization.k8s.io/v1 kind: Role metadata:   namespace: development   name: developer rules: - apiGroups: [""]   resources: ["pods", "services", "configmaps"]   verbs: ["get", "list", "create", "update", "patch", "delete"] - apiGroups: ["apps"]   resources: ["deployments", "replicasets"]   verbs: ["get", "list...