230 lines
6.8 KiB
YAML
230 lines
6.8 KiB
YAML
# https://kubernetes.io/docs/concepts/workloads/pods/
|
|
apiVersion: v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: data-seeding
|
|
namespace: grassroots
|
|
labels:
|
|
app: data-seeding
|
|
group: cic
|
|
spec:
|
|
containers:
|
|
# This container should stay up for interactive use for now.
|
|
- name: data-seeding
|
|
image: registry.gitlab.com/grassrootseconomics/cic-internal-integration/data-seeding:latest
|
|
command: bash -c "while true; do sleep 1; done" # Infinite loop to keep container live doing nothing
|
|
resources:
|
|
requests:
|
|
cpu: 50m
|
|
memory: 200Mi
|
|
limits:
|
|
cpu: 100m
|
|
memory: 400Mi
|
|
env:
|
|
- name: DATABASE_USER
|
|
valueFrom:
|
|
configMapKeyRef:
|
|
name: postgresql-conn-common
|
|
key: DATABASE_USER
|
|
- name: DATABASE_HOST
|
|
valueFrom:
|
|
configMapKeyRef:
|
|
name: postgresql-conn-common
|
|
key: DATABASE_HOST
|
|
- name: DATABASE_PORT
|
|
valueFrom:
|
|
configMapKeyRef:
|
|
name: postgresql-conn-common
|
|
key: DATABASE_PORT
|
|
- name: DATABASE_ENGINE
|
|
valueFrom:
|
|
configMapKeyRef:
|
|
name: postgresql-conn-common
|
|
key: DATABASE_ENGINE
|
|
- name: DATABASE_DRIVER
|
|
valueFrom:
|
|
configMapKeyRef:
|
|
name: postgresql-conn-common
|
|
key: DATABASE_DRIVER
|
|
- name: DATABASE_PASSWORD
|
|
valueFrom:
|
|
configMapKeyRef:
|
|
name: postgresql-conn-common
|
|
key: DATABASE_PASSWORD
|
|
- name: CELERY_BROKER_URL
|
|
valueFrom:
|
|
configMapKeyRef:
|
|
name: redis-conn-common
|
|
key: CELERY_BROKER_URL
|
|
- name: CELERY_RESULT_URL
|
|
valueFrom:
|
|
configMapKeyRef:
|
|
name: redis-conn-common
|
|
key: CELERY_RESULT_URL
|
|
- name: ETH_PROVIDER
|
|
value: http://bloxberg-validator.grassroots.svc.cluster.local:8547
|
|
- name: CIC_REGISTRY_ADDRESS
|
|
valueFrom:
|
|
configMapKeyRef:
|
|
name: contract-migration-output
|
|
key: CIC_REGISTRY_ADDRESS
|
|
- name: CIC_TRUST_ADDRESS
|
|
valueFrom:
|
|
configMapKeyRef:
|
|
name: contract-migration-output
|
|
key: CIC_TRUST_ADDRESS
|
|
- name: CELERY_BROKER_URL
|
|
valueFrom:
|
|
configMapKeyRef:
|
|
name: redis-conn-common
|
|
key: CELERY_BROKER_URL
|
|
- name: CELERY_RESULT_URL
|
|
valueFrom:
|
|
configMapKeyRef:
|
|
name: redis-conn-common
|
|
key: CELERY_RESULT_URL
|
|
- name: DATABASE_NAME
|
|
value: cic_eth
|
|
- name: META_URL
|
|
value: http://cic-meta-server:80
|
|
- name: META_HOST
|
|
value: cic-meta-server
|
|
- name: META_PORT
|
|
value: "80"
|
|
- name: PGP_PRIVATE_KEY_FILE # Private key here is for enrypting data
|
|
value: privatekey.asc
|
|
- name: PGP_PUBLIC_KEY_FILE
|
|
value: publickeys.asc
|
|
- name: PGP_PASSPHRASE
|
|
value: queenmarlena # TODO move to secret
|
|
- name: REDIS_HOST
|
|
value: redis-master
|
|
- name: REDIS_PORT
|
|
value: "6379"
|
|
- name: TOKEN_SYMBOL
|
|
value: "GFT"
|
|
- name: USER_USSD_HOST
|
|
value: cic-user-ussd-svc
|
|
- name: USER_USSD_PORT
|
|
value: "80"
|
|
- name: KEYSTORE_FILE_PATH
|
|
value: /root/keystore/UTC--2021-01-08T17-18-44.521011372Z--eb3907ecad74a0013c259d5874ae7f22dcbcc95c
|
|
volumeMounts:
|
|
- mountPath: /tmp/src/keys
|
|
readOnly: true
|
|
name: pgp
|
|
- moutPath: /root/out
|
|
name: out-dir
|
|
- name: data-seeding-tasker
|
|
image: registry.gitlab.com/grassrootseconomics/cic-internal-integration/data-seeding:latest
|
|
command: bash -c "while true; do sleep 1; done" # Infinite loop to keep container live doing nothing
|
|
resources:
|
|
requests:
|
|
cpu: 50m
|
|
memory: 200Mi
|
|
limits:
|
|
cpu: 100m
|
|
memory: 400Mi
|
|
env:
|
|
- name: DATABASE_USER
|
|
valueFrom:
|
|
configMapKeyRef:
|
|
name: postgresql-conn-common
|
|
key: DATABASE_USER
|
|
- name: DATABASE_HOST
|
|
valueFrom:
|
|
configMapKeyRef:
|
|
name: postgresql-conn-common
|
|
key: DATABASE_HOST
|
|
- name: DATABASE_PORT
|
|
valueFrom:
|
|
configMapKeyRef:
|
|
name: postgresql-conn-common
|
|
key: DATABASE_PORT
|
|
- name: DATABASE_ENGINE
|
|
valueFrom:
|
|
configMapKeyRef:
|
|
name: postgresql-conn-common
|
|
key: DATABASE_ENGINE
|
|
- name: DATABASE_DRIVER
|
|
valueFrom:
|
|
configMapKeyRef:
|
|
name: postgresql-conn-common
|
|
key: DATABASE_DRIVER
|
|
- name: DATABASE_PASSWORD
|
|
valueFrom:
|
|
configMapKeyRef:
|
|
name: postgresql-conn-common
|
|
key: DATABASE_PASSWORD
|
|
- name: CELERY_BROKER_URL
|
|
valueFrom:
|
|
configMapKeyRef:
|
|
name: redis-conn-common
|
|
key: CELERY_BROKER_URL
|
|
- name: CELERY_RESULT_URL
|
|
valueFrom:
|
|
configMapKeyRef:
|
|
name: redis-conn-common
|
|
key: CELERY_RESULT_URL
|
|
- name: ETH_PROVIDER
|
|
value: http://bloxberg-validator.grassroots.svc.cluster.local:8547
|
|
- name: CIC_REGISTRY_ADDRESS
|
|
valueFrom:
|
|
configMapKeyRef:
|
|
name: contract-migration-output
|
|
key: CIC_REGISTRY_ADDRESS
|
|
- name: CIC_TRUST_ADDRESS
|
|
valueFrom:
|
|
configMapKeyRef:
|
|
name: contract-migration-output
|
|
key: CIC_TRUST_ADDRESS
|
|
- name: CELERY_BROKER_URL
|
|
valueFrom:
|
|
configMapKeyRef:
|
|
name: redis-conn-common
|
|
key: CELERY_BROKER_URL
|
|
- name: CELERY_RESULT_URL
|
|
valueFrom:
|
|
configMapKeyRef:
|
|
name: redis-conn-common
|
|
key: CELERY_RESULT_URL
|
|
- name: DATABASE_NAME
|
|
value: cic_eth
|
|
- name: META_URL
|
|
value: http://cic-meta-server:80
|
|
- name: META_HOST
|
|
value: cic-meta-server
|
|
- name: META_PORT
|
|
value: "80"
|
|
- name: PGP_PRIVATE_KEY_FILE # Private key here is for enrypting data
|
|
value: privatekey.asc
|
|
- name: PGP_PUBLIC_KEY_FILE
|
|
value: publickeys.asc
|
|
- name: PGP_PASSPHRASE
|
|
value: queenmarlena # TODO move to secret
|
|
- name: REDIS_HOST
|
|
value: redis-master
|
|
- name: REDIS_PORT
|
|
value: "6379"
|
|
- name: TOKEN_SYMBOL
|
|
value: "GFT"
|
|
- name: USER_USSD_HOST
|
|
value: cic-user-ussd-svc
|
|
- name: USER_USSD_PORT
|
|
value: "80"
|
|
- name: KEYSTORE_FILE_PATH
|
|
value: /root/keystore/UTC--2021-01-08T17-18-44.521011372Z--eb3907ecad74a0013c259d5874ae7f22dcbcc95c
|
|
volumeMounts:
|
|
- mountPath: /tmp/src/keys
|
|
readOnly: true
|
|
name: pgp
|
|
- moutPath: /root/out
|
|
name: out-dir
|
|
volumes:
|
|
- name: out-dir
|
|
emptyDir: {}
|
|
- name: pgp
|
|
configMap:
|
|
name: pgp-meta-test
|
|
restartPolicy: Never
|