Sha256: 385abb3f42fb204ff59847e0f70b33a1b4bc4eb58b53197b9f604f169f15c2d4
Contents?: true
Size: 1.32 KB
Versions: 21
Compression:
Stored size: 1.32 KB
Contents
apiVersion: apps/v1 kind: Deployment metadata: name: rubypitaya labels: app: rubypitaya spec: replicas: 1 selector: matchLabels: app: rubypitaya template: metadata: labels: app: rubypitaya spec: containers: - name: rubypitaya image: registry.gitlab.com/lucianopc/ruby-pitaya:latest command: ["bundle", "exec", "rubypitaya", "run"] ports: - containerPort: 4567 name: rubypitaya env: - name: SERVER_NAME value: "rubypitaya" - name: RUBYPITAYA_ENV value: "production" - name: NATS_URL value: "nats://nats.default.svc.cluster.local:4222" - name: ETCD_URL value: "http://etcd.default.svc.cluster.local:2379" - name: ETCD_PREFIX value: "rubypitaya/" - name: ETCD_LEASE_SECONDS value: "60" - name: REDIS_URL value: "redis://redis.default.svc.cluster.local:6379" - name: DATABASE_HOST value: "postgres.default.svc.cluster.local" - name: DATABASE_USER value: "postgres" - name: DATABASE_PASSWORD value: "postgres" - name: DATABASE_NAME value: "ruby_pitaya" imagePullSecrets: - name: gitlab-registry
Version data entries
21 entries across 21 versions & 1 rubygems