Created
July 10, 2018 01:38
-
-
Save tonysm/7dd473e8d8068c94a91ee05197e809c1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: extensions/v1beta1 | |
kind: Deployment | |
metadata: | |
name: slackish-webapp | |
namespace: slackishapp | |
spec: | |
replicas: 3 | |
minReadySeconds: 10 | |
strategy: | |
type: RollingUpdate | |
rollingUpdate: | |
maxUnavailable: 1 | |
maxSurge: 1 | |
selector: | |
matchLabels: | |
app: slackish-webapp | |
template: | |
metadata: | |
labels: | |
app: slackish-webapp | |
namespace: slackishapp | |
spec: | |
containers: | |
- image: tonysm/slackish-laravel-app:1.0 | |
name: slackish-webapp | |
ports: | |
- containerPort: 80 | |
env: | |
- name: APP_NAME | |
value: "Slackish" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment