Skip to content
This repository has been archived by the owner on Oct 8, 2024. It is now read-only.

Commit

Permalink
Default to auto register true (#15)
Browse files Browse the repository at this point in the history
Co-authored-by: Michael-Kruggel <michael.kruggel@defenseunicorns.com>
  • Loading branch information
corang and Michael-Kruggel authored Aug 29, 2023
1 parent 98603b6 commit d73fae0
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 11 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ jobs:
uses: supplypike/setup-bin@v3
with:
# renovate: zarf-uri datasource=github-tags depName=defenseunicorns/zarf
uri: 'https://github.com/defenseunicorns/zarf/releases/download/v0.29.0/zarf_v0.29.0_Linux_amd64'
uri: 'https://github.com/defenseunicorns/zarf/releases/download/v0.29.1/zarf_v0.29.1_Linux_amd64'
name: 'zarf'
# renovate: datasource=github-tags depName=defenseunicorns/zarf versioning=semver
version: 'v0.29.0'
version: 'v0.29.1'

- name: Login to GHCR
uses: docker/login-action@v2
Expand All @@ -50,15 +50,10 @@ jobs:
####
# Build and publish dependency packages to use in a dev UDS Bundle
####
- name: Build dev-dependency gitlab runner namespace package
run: cd utils/pkg-deps/namespaces && zarf package create --confirm --no-progress

- name: Build dev-dependency gitlab runner rbac package
run: cd utils/pkg-deps/rbac && zarf package create --confirm --no-progress

- name: Publish dev-dependency gitlab runner namespace package
run: cd utils/pkg-deps/namespaces && zarf package publish zarf-package-gitlab-runner-namespaces-amd64-*.tar.zst oci://ghcr.io/defenseunicorns/uds-capability/gitlab-runner/dev-dependency --no-progress

- name: Publish dev-dependency gitlab runner rbac package
run: cd utils/pkg-deps/rbac && zarf package publish zarf-package-gitlab-runner-rbac-amd64-*.tar.zst oci://ghcr.io/defenseunicorns/uds-capability/gitlab-runner/dev-dependency --no-progress

Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ repos:
args:
[
"--schemafile",
"https://raw.githubusercontent.com/defenseunicorns/zarf/v0.28.0/zarf.schema.json",
"https://raw.githubusercontent.com/defenseunicorns/zarf/v0.29.1/zarf.schema.json",
"--no-cache"
]
- repo: https://github.com/golangci/golangci-lint
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# The version of Zarf to use. To keep this repo as portable as possible the Zarf binary will be downloaded and added to
# the build folder.
ZARF_VERSION := v0.29.0
ZARF_VERSION := v0.29.1

# The version of the build harness container to use
BUILD_HARNESS_REPO := ghcr.io/defenseunicorns/build-harness/build-harness
Expand Down
4 changes: 2 additions & 2 deletions zarf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kind: ZarfPackageConfig
metadata:
name: gitlab-runner
description: "UDS GitLab Runner capability deployed via flux"
version: "0.0.4"
version: "0.0.5"
architecture: amd64

variables:
Expand All @@ -15,7 +15,7 @@ variables:
- name: GITLAB_RUNNER_CREATE_NAMESPACE
default: "false"
- name: AUTO_REGISTER
default: "false"
default: "true"

components:
- name: istio-version
Expand Down

0 comments on commit d73fae0

Please sign in to comment.