Skip to content

Commit

Permalink
Bump crib chart and update config (#13238)
Browse files Browse the repository at this point in the history
* Bump crib chart and update config

The latest version of crib chainlink chart uses map instead of array for defining nodes

* Bump chart and update config
  • Loading branch information
scheibinger authored May 23, 2024
1 parent 5db47b6 commit 38a8f8d
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions crib/devspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ deployments:
releaseName: "app"
chart:
name: ${CHAINLINK_CLUSTER_HELM_CHART_URI}
version: 0.6.0
version: "1.1.0"
# for simplicity, we define all the values here
# they can be defined the same way in values.yml
# devspace merges these "values" with the "values.yaml" before deploy
Expand Down Expand Up @@ -158,7 +158,7 @@ deployments:
# extraEnvVars:
# "CL_MEDIAN_CMD": "chainlink-feeds"
nodes:
- name: node-1
node1:
image: ${runtime.images.app}
# default resources are 300m/1Gi
# first node need more resources to build faster inside container
Expand Down Expand Up @@ -209,13 +209,13 @@ deployments:
# CollectorTarget = 'app-opentelemetry-collector:4317'
# TLSCertPath = ''
# Mode = 'unencrypted'
- name: node-2
node2:
image: ${runtime.images.app}
- name: node-3
node3:
image: ${runtime.images.app}
- name: node-4
node4:
image: ${runtime.images.app}
- name: node-5
node5:
image: ${runtime.images.app}

# each CL node have a dedicated PostgreSQL 11.15
Expand Down Expand Up @@ -307,7 +307,7 @@ deployments:
- path: /
backend:
service:
name: app-node-1
name: app-node1
port:
number: 6688
- host: ${DEVSPACE_NAMESPACE}-node2.${DEVSPACE_INGRESS_BASE_DOMAIN}
Expand All @@ -316,7 +316,7 @@ deployments:
- path: /
backend:
service:
name: app-node-2
name: app-node2
port:
number: 6688
- host: ${DEVSPACE_NAMESPACE}-node3.${DEVSPACE_INGRESS_BASE_DOMAIN}
Expand All @@ -325,7 +325,7 @@ deployments:
- path: /
backend:
service:
name: app-node-3
name: app-node3
port:
number: 6688
- host: ${DEVSPACE_NAMESPACE}-node4.${DEVSPACE_INGRESS_BASE_DOMAIN}
Expand All @@ -334,7 +334,7 @@ deployments:
- path: /
backend:
service:
name: app-node-4
name: app-node4
port:
number: 6688
- host: ${DEVSPACE_NAMESPACE}-node5.${DEVSPACE_INGRESS_BASE_DOMAIN}
Expand All @@ -343,7 +343,7 @@ deployments:
- path: /
backend:
service:
name: app-node-5
name: app-node5
port:
number: 6688
- host: ${DEVSPACE_NAMESPACE}-geth-1337-http.${DEVSPACE_INGRESS_BASE_DOMAIN}
Expand Down

0 comments on commit 38a8f8d

Please sign in to comment.