diff --git a/.github/workflows/policy-engine.yml b/.github/workflows/policy-engine.yml index b76777107..812abbdf3 100644 --- a/.github/workflows/policy-engine.yml +++ b/.github/workflows/policy-engine.yml @@ -167,11 +167,11 @@ jobs: - name: Update Image Version in the worker HelmChart values.yaml uses: fjogeleit/yaml-update-action@master with: - valueFile: "charts/policy-engine/values.yaml" - propertyPath: "image.tag" + valueFile: 'charts/policy-engine/values.yaml' + propertyPath: 'image.tag' value: ${{ env.sha7 }} branch: main - message: "Update policy-engine Image Version to ${{ env.sha7 }}" + message: 'Update policy-engine Image Version to ${{ env.sha7 }}' - name: Send Slack notification on failure if: failure() && github.ref == 'refs/heads/main' @@ -182,4 +182,4 @@ jobs: status: ${{ job.status }} fields: message,commit,author env: - SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }} \ No newline at end of file + SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }} diff --git a/.github/workflows/vault.yml b/.github/workflows/vault.yml index 0e12f9016..9c13d0a28 100644 --- a/.github/workflows/vault.yml +++ b/.github/workflows/vault.yml @@ -144,11 +144,11 @@ jobs: - name: Update Image Version in the worker HelmChart values.yaml uses: fjogeleit/yaml-update-action@master with: - valueFile: "charts/vault/values.yaml" - propertyPath: "image.tag" + valueFile: 'charts/vault/values.yaml' + propertyPath: 'image.tag' value: ${{ env.sha7 }} branch: main - message: "Update Vault Image Version to ${{ env.sha7 }}" + message: 'Update Vault Image Version to ${{ env.sha7 }}' - name: Send Slack notification on failure if: failure() && github.ref == 'refs/heads/main' @@ -159,4 +159,4 @@ jobs: status: ${{ job.status }} fields: message,commit,author env: - SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }} \ No newline at end of file + SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }} diff --git a/.prettierignore b/.prettierignore index 9803ee5f7..61789b1ec 100644 --- a/.prettierignore +++ b/.prettierignore @@ -3,4 +3,5 @@ dist/ node_modules/* dist/* -.nx/cache/* \ No newline at end of file +.nx/cache/* +charts/* \ No newline at end of file diff --git a/README.md b/README.md index 1f4d5598f..3cd07d178 100644 --- a/README.md +++ b/README.md @@ -87,8 +87,8 @@ npx nx g @nx/nest:application --tags type:application For more information about code generation, please refer to the [NX documentation](https://nx.dev/nx-api/nx). - # NPM Auth Variables + The `.npmrc` file is needed for private registry credentials. This file is NOT in git, but it's necessary for the build @@ -99,10 +99,13 @@ This file is NOT in git, but it's necessary for the build # Troubleshooting ## Docker + Common issues you might encounter w/ docker ### DB URL in env variable fails when using `docker run`, but works when running outside docker + If using `docker run --env-file .env ...`, the env file cannot include quotes around values. The quotes will be included in the value. ### Localhost postgres url cannot connect + Inside docker, localhost points to the container not your computer. Change `localhost` to `host.docker.internal` to reference your computer's localhost ip.