Sample app for kubernetes 1.2.0

10/27/2016

Is there an example app that can be deployed on a kubernetes cluster running v1.2.0? The kubernetes official docs provides an example guestbook which creates deployments, but deployments are not supported on kubernetes v1.2.0.

I was trying to find some sample multi-container pods examples online that have containers running frontend but couldn't find good examples.

-- tkcode
kubernetes

1 Answer

2/26/2017

Kubernetes 1.2 deployments were released beta. Did your try changing the apiversion to beta.

apiVersion: extensions/v1beta1
kind: Deployment
-- Amila Kumaranayaka
Source: StackOverflow