diff --git a/.github/actions/constellation_create/action.yml b/.github/actions/constellation_create/action.yml index 399149ab8..ad6238557 100644 --- a/.github/actions/constellation_create/action.yml +++ b/.github/actions/constellation_create/action.yml @@ -127,9 +127,9 @@ runs: env: GCP_CLUSTER_SERVICE_ACCOUNT_KEY: ${{ inputs.gcpClusterServiceAccountKey }} - - name: Add debugd firewall rule + - name: Enable debugCluster flag run: | - yq eval -i '(.ingressFirewall) += {"name": "debugd", "description": "debugd default port", "protocol": "tcp", "iprange": "0.0.0.0/0", "fromport": 4000, "toport": 0}' constellation-conf.yaml + yq eval -i '(.debugCluster) = true' constellation-conf.yaml shell: bash if: ${{ inputs.isDebugImage == 'true' }} @@ -185,5 +185,5 @@ runs: uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 with: name: serial-logs - path: '*.log' + path: "*.log" if: ${{ always() && !env.ACT }} diff --git a/debugd/README.md b/debugd/README.md index 03d6482ee..5b8d548c4 100644 --- a/debugd/README.md +++ b/debugd/README.md @@ -32,14 +32,7 @@ With `cdbg` and `yq` installed in your path: constellation-conf.yaml yq -i \ - ".ingressFirewall += { - \"name\": \"debugd\", - \"description\": \"debugd default port\", - \"protocol\": \"tcp\", - \"iprange\": \"0.0.0.0/0\", - \"fromport\": 4000, - \"toport\": 0 - }" \ + "(.debugCluster) = true" \ constellation-conf.yaml ```