Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions stepsecurity/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.PHONY: gen-yaml
gen-yaml:
docker run -ti --rm \
-v $${PWD}:/opt/manifests \
--workdir=/opt/manifests \
--entrypoint=/bin/sh \
alpine/helm ./gen-yaml
11 changes: 11 additions & 0 deletions stepsecurity/arc_harden_runner_values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
env:
customer: "utilitywarehouse"
apiKey: "step_api_key_change_me"
clusterName: "[CLUSTER_NAME]"
arcRunnerNameSpaces:
- sys-actions
tetragon:
resources:
requests:
cpu: "1"
memory: "1024Mi"
11 changes: 11 additions & 0 deletions stepsecurity/gen-yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/sh


# Generate manifests
STEP_SECURITY_VERSION="2.16.0"
helm repo add stepsecurity https://helm.stepsecurity.io/arc-harden-runner
helm repo update
helm template arc-harden-runner stepsecurity/arc-harden-runner \
-n sys-actions \
--version "${STEP_SECURITY_VERSION}" \
-f arc_harden_runner_values.yaml > upstream.yaml
Loading
Loading