Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save goindwalia/2253140ae57ffbd15283be0adf643f38 to your computer and use it in GitHub Desktop.
Save goindwalia/2253140ae57ffbd15283be0adf643f38 to your computer and use it in GitHub Desktop.
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: <name of application>
namespace: <namespace of Kubernetes>
spec:
replicas: <number of application pods>
template:
metadata:
labels:
k8s-app: <name of application>
spec:
containers:
- name: <name of application>
image: <image name >:<version tag>
imagePullPolicy: "IfNotPresent"
ports:
- containerPort: 2223
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment