diff --git a/.github/scripts/crib/pr-comment-crib-env.js b/.github/scripts/crib/pr-comment-crib-env.js index d569587baff..cc36a9deb7b 100755 --- a/.github/scripts/crib/pr-comment-crib-env.js +++ b/.github/scripts/crib/pr-comment-crib-env.js @@ -11,7 +11,6 @@ function generateSubdomains(subdomainPrefix, prNumber) { "node3", "node4", "node5", - "node6", "geth-1337-http", "geth-1337-ws", "geth-2337-http", diff --git a/crib/.gitignore b/crib/.gitignore new file mode 100644 index 00000000000..9edd651d4db --- /dev/null +++ b/crib/.gitignore @@ -0,0 +1,3 @@ +values-profiles/* +!values-profiles/values-dev.yaml.example +!values-profiles/README.md diff --git a/crib/devspace.yaml b/crib/devspace.yaml index 213fe4c24c7..f22e710f943 100644 --- a/crib/devspace.yaml +++ b/crib/devspace.yaml @@ -74,7 +74,7 @@ images: docker push $image hooks: - command: ./scripts/check_env_vars.sh - events: [ "before:deploy:app" ] + events: ["before:deploy:app"] - wait: running: true terminatedWithCode: 0 @@ -100,7 +100,7 @@ deployments: releaseName: "app" chart: name: ${CHAINLINK_CLUSTER_HELM_CHART_URI} - version: 0.5.0 + version: 0.6.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 @@ -217,8 +217,6 @@ deployments: image: ${runtime.images.app} - name: node-5 image: ${runtime.images.app} - - name: node-6 - image: ${runtime.images.app} # each CL node have a dedicated PostgreSQL 11.15 # use StatefulSet by setting: @@ -348,15 +346,6 @@ deployments: name: app-node-5 port: number: 6688 - - host: ${DEVSPACE_NAMESPACE}-node6.${DEVSPACE_INGRESS_BASE_DOMAIN} - http: - paths: - - path: / - backend: - service: - name: app-node-6 - port: - number: 6688 - host: ${DEVSPACE_NAMESPACE}-geth-1337-http.${DEVSPACE_INGRESS_BASE_DOMAIN} http: paths: @@ -432,4 +421,4 @@ profiles: path: deployments.app.helm.values.chainlink.global.overridesToml - op: add path: deployments.app.helm.valuesFiles - value: ["../charts/chainlink-cluster/values-profiles/values-dev.yaml"] + value: ["./values-profiles/values-dev.yaml"]