Advertisement
andreevm

Untitled

Dec 11th, 2019
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.63 KB | None | 0 0
  1. microservicename: old-site
  2.  
  3. deployment:
  4.   image: "docker.io/ci-images/site"
  5.   imageTag: latest
  6.   restartPolicy: Always
  7.   namespace: default
  8.   secretName: consul-secret
  9.   apps:
  10.     app:
  11.       name: app
  12.       command:
  13.        - python
  14.         - server.py
  15.       args:
  16.        - bundle exec puma -C config/puma.rb
  17.         - -exec-reload-signal
  18.         - SIGUSR2
  19.       env:
  20.         PORT: 80
  21.         ENV: staging
  22.       healthcheck: /healthcheck
  23.     sidekiq:
  24.       name: sidekiq
  25.       command:
  26.        - bundle exec sidekiq
  27.       env:
  28.         PORT: 80
  29.         ENV: staging
  30.  
  31. service:
  32.   serviceType: NodePort
  33.  
  34. hpa:
  35. ingress:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement