Compare commits
15 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| fce2468b2b | |||
| 30ff44c33b | |||
| 11fd063f95 | |||
| 70758f1d74 | |||
| 395bf58622 | |||
| 358bf3b06f | |||
| 298834cd9f | |||
| a6dc98df0d | |||
| 04d506533e | |||
| a8797ceedb | |||
| c75c6f5172 | |||
| bac8715813 | |||
| 975efe3d37 | |||
| 87626040ca | |||
| e7d71f95bf |
+9
-7
@@ -11,14 +11,16 @@ Diff a Helm chart for a deployment in a Kubernetes cluster
|
||||
|
||||
| name | description | required | default |
|
||||
| --- | --- | --- | --- |
|
||||
| `DEPLOYMENT_NAME` | <p>The Kubernetes Deployment to update</p> | `true` | `""` |
|
||||
| `DEPLOYMENT_NAMESPACE` | <p>The Kubernetes namespace of the Deployment</p> | `true` | `""` |
|
||||
| `IMAGE_PATH` | <p>The registry path to the image</p> | `true` | `""` |
|
||||
| `IMAGE_TAG` | <p>The image tag to deploy</p> | `true` | `""` |
|
||||
| `CONTAINER_NAME` | <p>The container component to update</p> | `true` | `""` |
|
||||
| `VALUES_FILE` | <p>The values file to use</p> | `false` | `./helm/values.yaml` |
|
||||
| `DEPLOYMENT_NAME` | <p>The Helm release name</p> | `true` | `""` |
|
||||
| `DEPLOYMENT_NAMESPACE` | <p>The Kubernetes namespace (defaults to DEPLOYMENT_NAME)</p> | `false` | `""` |
|
||||
| `REGISTRY` | <p>OCI registry hostname for helm dependency login</p> | `true` | `""` |
|
||||
| `REGISTRY_USERNAME` | <p>Username for OCI registry login</p> | `true` | `""` |
|
||||
| `REGISTRY_TOKEN` | <p>Token for OCI registry login</p> | `true` | `""` |
|
||||
| `CHART_PATH` | <p>Path to the Helm chart</p> | `false` | `./helm` |
|
||||
| `TAG_KEY` | <p>Helm --set key for the image tag (e.g. deploy.api.tag)</p> | `true` | `""` |
|
||||
| `VALUES_FILE` | <p>The values file to use</p> | `false` | `./helm/values.yaml` |
|
||||
| `IMAGE_PATH` | <p>The registry path to the image (optional)</p> | `false` | `""` |
|
||||
| `IMAGE_TAG` | <p>The image tag to deploy (optional)</p> | `false` | `""` |
|
||||
| `TAG_KEY` | <p>Helm --set key for the image tag (e.g. deploy.api.tag)</p> | `false` | `""` |
|
||||
<!-- action-docs-inputs source="action.yml" -->
|
||||
|
||||
<!-- action-docs-runs source="action.yml" -->
|
||||
|
||||
+50
-16
@@ -2,40 +2,74 @@ name: Helm Diff Deployment
|
||||
description: Diff a Helm chart for a deployment in a Kubernetes cluster
|
||||
inputs:
|
||||
DEPLOYMENT_NAME:
|
||||
description: "The Kubernetes Deployment to update"
|
||||
description: "The Helm release name"
|
||||
required: true
|
||||
DEPLOYMENT_NAMESPACE:
|
||||
description: "The Kubernetes namespace of the Deployment"
|
||||
description: "The Kubernetes namespace (defaults to DEPLOYMENT_NAME)"
|
||||
default: ""
|
||||
REGISTRY:
|
||||
description: "OCI registry hostname for helm dependency login"
|
||||
required: true
|
||||
IMAGE_PATH:
|
||||
description: "The registry path to the image"
|
||||
REGISTRY_USERNAME:
|
||||
description: "Username for OCI registry login"
|
||||
required: true
|
||||
IMAGE_TAG:
|
||||
description: "The image tag to deploy"
|
||||
REGISTRY_TOKEN:
|
||||
description: "Token for OCI registry login"
|
||||
required: true
|
||||
CONTAINER_NAME:
|
||||
description: "The container component to update"
|
||||
required: true
|
||||
VALUES_FILE:
|
||||
description: "The values file to use"
|
||||
default: "./helm/values.yaml"
|
||||
CHART_PATH:
|
||||
description: "Path to the Helm chart"
|
||||
default: "./helm"
|
||||
VALUES_FILE:
|
||||
description: "The values file to use"
|
||||
default: "./helm/values.yaml"
|
||||
IMAGE_PATH:
|
||||
description: "The registry path to the image (optional)"
|
||||
default: ""
|
||||
IMAGE_TAG:
|
||||
description: "The image tag to deploy (optional)"
|
||||
default: ""
|
||||
TAG_KEY:
|
||||
description: "Helm --set key for the image tag (e.g. deploy.api.tag)"
|
||||
required: true
|
||||
default: ""
|
||||
|
||||
runs:
|
||||
using: composite
|
||||
steps:
|
||||
- name: Helm OCI Login
|
||||
shell: sh
|
||||
env:
|
||||
REGISTRY: ${{ inputs.REGISTRY }}
|
||||
REGISTRY_USERNAME: ${{ inputs.REGISTRY_USERNAME }}
|
||||
REGISTRY_TOKEN: ${{ inputs.REGISTRY_TOKEN }}
|
||||
run: |
|
||||
echo "$REGISTRY_TOKEN" | helm registry login "$REGISTRY" \
|
||||
--username "$REGISTRY_USERNAME" \
|
||||
--password-stdin
|
||||
|
||||
- name: Install Helm Diff
|
||||
shell: sh
|
||||
run: |
|
||||
helm plugin list | grep -q diff || helm plugin install https://github.com/databus23/helm-diff
|
||||
|
||||
- name: Helm Diff
|
||||
shell: sh
|
||||
env:
|
||||
DEPLOYMENT_NAME: ${{ inputs.DEPLOYMENT_NAME }}
|
||||
DEPLOYMENT_NAMESPACE: ${{ inputs.DEPLOYMENT_NAMESPACE }}
|
||||
CHART_PATH: ${{ inputs.CHART_PATH }}
|
||||
VALUES_FILE: ${{ inputs.VALUES_FILE }}
|
||||
IMAGE_PATH: ${{ inputs.IMAGE_PATH }}
|
||||
IMAGE_TAG: ${{ inputs.IMAGE_TAG }}
|
||||
TAG_KEY: ${{ inputs.TAG_KEY }}
|
||||
run: |
|
||||
CMD="helm diff upgrade ${{ inputs.DEPLOYMENT_NAME }} ${{ inputs.CHART_PATH }} -n ${{ inputs.DEPLOYMENT_NAMESPACE }} --values ${{ inputs.VALUES_FILE }} --set ${TAG_KEY}=${{ inputs.IMAGE_TAG }} --set image.repository=${{ inputs.IMAGE_PATH }} --context 5"
|
||||
echo "Running: $CMD"
|
||||
eval "$CMD"
|
||||
NAMESPACE="$DEPLOYMENT_NAMESPACE"
|
||||
if [ -z "$NAMESPACE" ]; then NAMESPACE="$DEPLOYMENT_NAME"; fi
|
||||
SET_FLAGS=""
|
||||
if [ -n "$TAG_KEY" ] && [ -n "$IMAGE_TAG" ]; then
|
||||
SET_FLAGS="$SET_FLAGS --set $TAG_KEY=$IMAGE_TAG"
|
||||
fi
|
||||
if [ -n "$IMAGE_PATH" ]; then
|
||||
SET_FLAGS="$SET_FLAGS --set image.repository=$IMAGE_PATH"
|
||||
fi
|
||||
helm dependency update "$CHART_PATH"
|
||||
helm diff upgrade "$DEPLOYMENT_NAME" "$CHART_PATH" -n "$NAMESPACE" --values "$VALUES_FILE" $SET_FLAGS --context 5
|
||||
|
||||
@@ -11,14 +11,16 @@ Template a Helm chart for a deployment in a Kubernetes cluster
|
||||
|
||||
| name | description | required | default |
|
||||
| --- | --- | --- | --- |
|
||||
| `DEPLOYMENT_NAME` | <p>The Kubernetes Deployment to update</p> | `true` | `""` |
|
||||
| `DEPLOYMENT_NAMESPACE` | <p>The Kubernetes namespace of the Deployment</p> | `true` | `""` |
|
||||
| `IMAGE_PATH` | <p>The registry path to the image</p> | `true` | `""` |
|
||||
| `IMAGE_TAG` | <p>The image tag to deploy</p> | `true` | `""` |
|
||||
| `CONTAINER_NAME` | <p>The container component to update</p> | `true` | `""` |
|
||||
| `VALUES_FILE` | <p>The values file to use</p> | `false` | `./helm/values.yaml` |
|
||||
| `DEPLOYMENT_NAME` | <p>The Helm release name</p> | `true` | `""` |
|
||||
| `DEPLOYMENT_NAMESPACE` | <p>The Kubernetes namespace (defaults to DEPLOYMENT_NAME)</p> | `false` | `""` |
|
||||
| `REGISTRY` | <p>OCI registry hostname for helm dependency login</p> | `true` | `""` |
|
||||
| `REGISTRY_USERNAME` | <p>Username for OCI registry login</p> | `true` | `""` |
|
||||
| `REGISTRY_TOKEN` | <p>Token for OCI registry login</p> | `true` | `""` |
|
||||
| `CHART_PATH` | <p>Path to the Helm chart</p> | `false` | `./helm` |
|
||||
| `TAG_KEY` | <p>Helm --set key for the image tag (e.g. deploy.api.tag)</p> | `true` | `""` |
|
||||
| `VALUES_FILE` | <p>The values file to use</p> | `false` | `./helm/values.yaml` |
|
||||
| `IMAGE_PATH` | <p>The registry path to the image (optional)</p> | `false` | `""` |
|
||||
| `IMAGE_TAG` | <p>The image tag to deploy (optional)</p> | `false` | `""` |
|
||||
| `TAG_KEY` | <p>Helm --set key for the image tag (e.g. deploy.api.tag)</p> | `false` | `""` |
|
||||
<!-- action-docs-inputs source="action.yml" -->
|
||||
|
||||
<!-- action-docs-runs source="action.yml" -->
|
||||
|
||||
+49
-16
@@ -2,36 +2,69 @@ name: Helm Template Deployment
|
||||
description: Template a Helm chart for a deployment in a Kubernetes cluster
|
||||
inputs:
|
||||
DEPLOYMENT_NAME:
|
||||
description: "The Kubernetes Deployment to update"
|
||||
description: "The Helm release name"
|
||||
required: true
|
||||
DEPLOYMENT_NAMESPACE:
|
||||
description: "The Kubernetes namespace of the Deployment"
|
||||
description: "The Kubernetes namespace (defaults to DEPLOYMENT_NAME)"
|
||||
default: ""
|
||||
REGISTRY:
|
||||
description: "OCI registry hostname for helm dependency login"
|
||||
required: true
|
||||
IMAGE_PATH:
|
||||
description: "The registry path to the image"
|
||||
REGISTRY_USERNAME:
|
||||
description: "Username for OCI registry login"
|
||||
required: true
|
||||
IMAGE_TAG:
|
||||
description: "The image tag to deploy"
|
||||
REGISTRY_TOKEN:
|
||||
description: "Token for OCI registry login"
|
||||
required: true
|
||||
CONTAINER_NAME:
|
||||
description: "The container component to update"
|
||||
required: true
|
||||
VALUES_FILE:
|
||||
description: "The values file to use"
|
||||
default: "./helm/values.yaml"
|
||||
CHART_PATH:
|
||||
description: "Path to the Helm chart"
|
||||
default: "./helm"
|
||||
VALUES_FILE:
|
||||
description: "The values file to use"
|
||||
default: "./helm/values.yaml"
|
||||
IMAGE_PATH:
|
||||
description: "The registry path to the image (optional)"
|
||||
default: ""
|
||||
IMAGE_TAG:
|
||||
description: "The image tag to deploy (optional)"
|
||||
default: ""
|
||||
TAG_KEY:
|
||||
description: "Helm --set key for the image tag (e.g. deploy.api.tag)"
|
||||
required: true
|
||||
default: ""
|
||||
|
||||
runs:
|
||||
using: composite
|
||||
steps:
|
||||
- name: Helm OCI Login
|
||||
shell: sh
|
||||
env:
|
||||
REGISTRY: ${{ inputs.REGISTRY }}
|
||||
REGISTRY_USERNAME: ${{ inputs.REGISTRY_USERNAME }}
|
||||
REGISTRY_TOKEN: ${{ inputs.REGISTRY_TOKEN }}
|
||||
run: |
|
||||
echo "$REGISTRY_TOKEN" | helm registry login "$REGISTRY" \
|
||||
--username "$REGISTRY_USERNAME" \
|
||||
--password-stdin
|
||||
|
||||
- name: Helm Template
|
||||
shell: sh
|
||||
env:
|
||||
DEPLOYMENT_NAME: ${{ inputs.DEPLOYMENT_NAME }}
|
||||
DEPLOYMENT_NAMESPACE: ${{ inputs.DEPLOYMENT_NAMESPACE }}
|
||||
CHART_PATH: ${{ inputs.CHART_PATH }}
|
||||
VALUES_FILE: ${{ inputs.VALUES_FILE }}
|
||||
IMAGE_PATH: ${{ inputs.IMAGE_PATH }}
|
||||
IMAGE_TAG: ${{ inputs.IMAGE_TAG }}
|
||||
TAG_KEY: ${{ inputs.TAG_KEY }}
|
||||
run: |
|
||||
CMD="helm template ${{ inputs.DEPLOYMENT_NAME }} ${{ inputs.CHART_PATH }} -n ${{ inputs.DEPLOYMENT_NAMESPACE }} --values ${{ inputs.VALUES_FILE }} --set ${TAG_KEY}=${{ inputs.IMAGE_TAG }} --set image.repository=${{ inputs.IMAGE_PATH }}"
|
||||
echo "Running: $CMD"
|
||||
eval "$CMD"
|
||||
NAMESPACE="$DEPLOYMENT_NAMESPACE"
|
||||
if [ -z "$NAMESPACE" ]; then NAMESPACE="$DEPLOYMENT_NAME"; fi
|
||||
SET_FLAGS=""
|
||||
if [ -n "$TAG_KEY" ] && [ -n "$IMAGE_TAG" ]; then
|
||||
SET_FLAGS="$SET_FLAGS --set $TAG_KEY=$IMAGE_TAG"
|
||||
fi
|
||||
if [ -n "$IMAGE_PATH" ]; then
|
||||
SET_FLAGS="$SET_FLAGS --set image.repository=$IMAGE_PATH"
|
||||
fi
|
||||
helm dependency update "$CHART_PATH"
|
||||
helm template "$DEPLOYMENT_NAME" "$CHART_PATH" -n "$NAMESPACE" --values "$VALUES_FILE" $SET_FLAGS
|
||||
|
||||
@@ -67,7 +67,6 @@ runs:
|
||||
SET_FLAGS="$SET_FLAGS --set image.repository=$IMAGE_PATH"
|
||||
fi
|
||||
helm dependency update "$CHART_PATH"
|
||||
echo "Running: helm upgrade $DEPLOYMENT_NAME $CHART_PATH -n $NAMESPACE --values $VALUES_FILE$SET_FLAGS"
|
||||
helm upgrade "$DEPLOYMENT_NAME" "$CHART_PATH" -n "$NAMESPACE" --values "$VALUES_FILE" $SET_FLAGS
|
||||
|
||||
- name: Remove kubeconfig
|
||||
|
||||
@@ -18,6 +18,7 @@ Install dependencies, build, and upload a build artifact
|
||||
| `ARTIFACT_PATH` | <p>Path to upload as the artifact</p> | `false` | `dist` |
|
||||
| `COPY_PRISMA_ENGINE` | <p>Copy the Prisma query engine binaries into the build directory</p> | `false` | `false` |
|
||||
| `WORKING_DIRECTORY` | <p>Working directory for install, build, and artifact steps</p> | `false` | `.` |
|
||||
| `UPLOAD_ARTIFACT` | <p>Whether to upload the build artifact</p> | `false` | `true` |
|
||||
<!-- action-docs-inputs source="action.yml" -->
|
||||
|
||||
<!-- action-docs-runs source="action.yml" -->
|
||||
|
||||
@@ -22,6 +22,9 @@ inputs:
|
||||
WORKING_DIRECTORY:
|
||||
description: "Working directory for install, build, and artifact steps"
|
||||
default: "."
|
||||
UPLOAD_ARTIFACT:
|
||||
description: "Whether to upload the build artifact"
|
||||
default: "true"
|
||||
|
||||
runs:
|
||||
using: composite
|
||||
@@ -56,6 +59,7 @@ runs:
|
||||
cp node_modules/.prisma/client/libquery_engine-* build/prisma/
|
||||
|
||||
- name: Upload Build Artifact
|
||||
if: inputs.UPLOAD_ARTIFACT != 'false'
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: ${{ inputs.ARTIFACT_NAME }}
|
||||
|
||||
@@ -8,6 +8,7 @@ Composite action: install dependencies and run an npm test script.
|
||||
|---|---|---|
|
||||
| `INSTALL_CMD` | Install command | `npm ci` |
|
||||
| `TEST_SCRIPT` | npm script to run (must exist in `package.json`) | `test` |
|
||||
| `TEST_ARGS` | Additional arguments passed after `--` to the test script | `` |
|
||||
| `WORKING_DIRECTORY` | Directory to run commands in | `.` |
|
||||
|
||||
## Usage
|
||||
@@ -18,6 +19,15 @@ Composite action: install dependencies and run an npm test script.
|
||||
TEST_SCRIPT: test:unit
|
||||
```
|
||||
|
||||
With extra args:
|
||||
|
||||
```yaml
|
||||
- uses: stat-tackler/stat-tackler-infra/test/npm@main
|
||||
with:
|
||||
TEST_SCRIPT: test:coverage
|
||||
TEST_ARGS: --silent --reporter=dot --test-timeout=30000
|
||||
```
|
||||
|
||||
### Common test scripts by project
|
||||
|
||||
| Project | Script | Runner |
|
||||
|
||||
+4
-1
@@ -8,6 +8,9 @@ inputs:
|
||||
TEST_SCRIPT:
|
||||
description: "npm script to run (must exist in package.json)"
|
||||
default: "test"
|
||||
TEST_ARGS:
|
||||
description: "Additional arguments to pass after -- to the test script"
|
||||
default: ""
|
||||
WORKING_DIRECTORY:
|
||||
description: "Directory to run commands in"
|
||||
default: "."
|
||||
@@ -37,4 +40,4 @@ runs:
|
||||
- name: Test
|
||||
shell: sh
|
||||
working-directory: ${{ inputs.WORKING_DIRECTORY }}
|
||||
run: npm run ${{ inputs.TEST_SCRIPT }}
|
||||
run: npm run ${{ inputs.TEST_SCRIPT }}${{ inputs.TEST_ARGS != '' && format(' -- {0}', inputs.TEST_ARGS) || '' }}
|
||||
|
||||
Reference in New Issue
Block a user