From 7ea0771b1674707f74bcb2f4762abda6e30d2536 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Wed, 2 Aug 2023 10:07:02 -0400 Subject: [PATCH] Add vela deployment to the repo --- deploy/dapps-certification.yaml | 98 +++++++++++++++++++++++++++++++++ 1 file changed, 98 insertions(+) create mode 100644 deploy/dapps-certification.yaml diff --git a/deploy/dapps-certification.yaml b/deploy/dapps-certification.yaml new file mode 100644 index 00000000..713617b7 --- /dev/null +++ b/deploy/dapps-certification.yaml @@ -0,0 +1,98 @@ +apiVersion: core.oam.dev/v1beta1 +kind: Application +metadata: + name: dapps-certification + namespace: dapps-certification-staging +spec: + components: + - name: dapps-certification + properties: + env: + - name: WALLET_ADDRESS + value: addr_test1qphgqts20fhx0yx7ug42xehcnryukchy5k7hpaksgxax2fzt5w2gu33s8wrw3c9tjs97dr5pulsvf39e56v7c9ar39asptcrtp + - name: WALLET_ID + value: 73857344a0cf884fe044abfe85660cc9a81f6366 + - name: WALLET_URL + value: http://localhost:8090 + - name: WALLET_CERTIFICATION_PRICE + value: "1000000" + - name: PORT + value: "80" + - name: WALLET_PASSPHRASE + valueFrom: + secretKeyRef: + key: WALLET_PASSPHRASE + name: the-secrets + - name: JWT_SECRET2 + valueFrom: + secretKeyRef: + key: JWT_SECRET + name: the-secrets + image: ghcr.io/demoiog/plutus-certification:8 + imagePullPolicy: IfNotPresent + imagePullSecrets: + - iohk-ghcr-creds + memory: 8Gi + ports: + - expose: true + port: 80 + protocol: TCP + volumeMounts: + emptyDir: + - name: ipc + mountPath: /ipc + traits: + - properties: + replicas: 1 + type: scaler + - properties: + domains: + - dapps-certification.scdev.aws.iohkdev.io + rules: + - port: 80 + serviceName: dapps-certification + type: https-route + - type: sidecar + properties: + name: cardano-wallet + image: inputoutput/cardano-wallet:2022.12.14 + args: + - serve + - --node-socket + - /ipc/node.socket + - --database + - /wallet-db + - --listen-address + - 0.0.0.0 + - --testnet + - /config/preprod/genesis-byron.json + volumes: + - name: ipc + path: /ipc + - type: sidecar + properties: + name: socat + image: alpine/socat + args: + - UNIX-LISTEN:/ipc/node.socket,fork + - TCP-CONNECT:cardano-node-preprod.vela-system:8090 + volumes: + - name: ipc + path: /ipc + type: webservice + policies: + - name: local-dapps-certification + properties: + clusters: + - local + namespace: dapps-certification + type: topology + workflow: + steps: + - meta: + alias: Deploy To local-dapps-certification + name: local-dapps-certification + properties: + policies: + - local-dapps-certification + type: deploy