Sha256: d83fa536b425e3ced95123ece6532fc62e70c5976c00a4b4bfd890b71d9d510b
Contents?: true
Size: 1.04 KB
Versions: 2
Compression:
Stored size: 1.04 KB
Contents
# Template setup of Rails server workload, roughly corresponding to Heroku dyno # type within Procfile. kind: workload name: rails spec: type: standard containers: - name: rails # 300m is a good starting place for a test app. You can experiment with CPU configuration # once your app is running. cpu: 300m env: - name: LOG_LEVEL value: debug # Inherit other ENV values from GVC inheritEnv: true image: '/org/APP_ORG/image/APP_IMAGE' # 512 corresponds to a standard 1x dyno type memory: 512Mi ports: - number: 3000 protocol: http defaultOptions: # Start out like this for "test apps" autoscaling: # Max of 1 effectively disables autoscaling, so a like a Heroku dyno count of 1 maxScale: 1 capacityAI: false firewallConfig: external: # Default to allow public access to Rails server inboundAllowCIDR: - 0.0.0.0/0 # Could configure outbound for more security outboundAllowCIDR: - 0.0.0.0/0
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
cpl-1.3.0 | lib/generator_templates/templates/rails.yml |
cpl-1.2.0 | lib/generator_templates/templates/rails.yml |