Skip to content

Commit 570b7d4

Browse files
authored
Merge pull request #85 from authzed/goreleaser
Adds a goreleaser workflow
2 parents a9fba13 + 6e6f198 commit 570b7d4

File tree

3 files changed

+134
-2
lines changed

3 files changed

+134
-2
lines changed

.github/workflows/release.yaml

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
---
2+
name: "Release"
3+
on: # yamllint disable-line rule:truthy
4+
push:
5+
tags:
6+
- "*"
7+
permissions:
8+
contents: "write"
9+
packages: "write"
10+
jobs:
11+
goreleaser:
12+
runs-on: "ubuntu-latest"
13+
env:
14+
KUSTOMIZER_ARTIFACT: "oci://ghcr.io/${{github.repository_owner}}/${{github.event.repository.name}}-manifests"
15+
steps:
16+
- uses: "actions/checkout@v3"
17+
with:
18+
fetch-depth: 0
19+
- uses: "authzed/actions/setup-go@main"
20+
- uses: "authzed/actions/docker-login@main"
21+
with:
22+
github_token: "${{ secrets.GITHUB_TOKEN }}"
23+
# the release directory is gitignored, which keeps goreleaser from
24+
# complaining about a dirty tree
25+
- name: "Copy manifests to release directory"
26+
run: |
27+
mkdir release
28+
cp -R deploy release
29+
- name: "Set operator image in release manifests"
30+
uses: "mikefarah/yq@master"
31+
with:
32+
cmd: |
33+
yq eval '.images[0].newName="ghcr.io/${{github.repository_owner}}/${{github.event.repository.name}}"' -i ./release/deploy/kustomization.yaml
34+
yq eval '.images[0].newTag="${{ github.ref_name }}"' -i ./release/deploy/kustomization.yaml
35+
- name: "Build release bundle.yaml"
36+
uses: "karancode/kustomize-github-action@master"
37+
with:
38+
kustomize_build_dir: "release/deploy"
39+
kustomize_output_file: "release/bundle.yaml"
40+
- uses: "goreleaser/goreleaser-action@v2"
41+
with:
42+
distribution: "goreleaser-pro"
43+
version: "latest"
44+
args: "release --rm-dist"
45+
env:
46+
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
47+
GORELEASER_KEY: "${{ secrets.GORELEASER_KEY }}"
48+
- name: "Setup Kustomizer CLI"
49+
uses: "stefanprodan/kustomizer/action@main"
50+
- name: "Push release manifests"
51+
run: |
52+
kustomizer push artifact ${KUSTOMIZER_ARTIFACT}:${{ github.ref_name }} -k ./release/deploy \
53+
--source=${{ github.repositoryUrl }} \
54+
--revision="${{ github.ref_name }}/${{ github.sha }}"
55+
- name: "Tag latest release manifests"
56+
run: |
57+
kustomizer tag artifact ${KUSTOMIZER_ARTIFACT}:${GITHUB_REF_NAME} latest

.gitignore

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
*.kubeconfig
2-
/testbin/
2+
dist/
3+
testbin/
4+
release/
35
/**/apiserver.local.config/
46
client-ca.crt
57
client-cert.crt
68
client-key.crt
79
*__failpoint_*.go
810
*.go__failpoint*
911
*.sqlite
10-
magefiles/mage_output_file.go
12+
magefiles/mage_output_file.go

.goreleaser.yaml

+73
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
---
2+
builds:
3+
- main: "./cmd/spicedb-kubeapi-proxy"
4+
env:
5+
- "CGO_ENABLED=0"
6+
goos:
7+
- "linux"
8+
- "windows"
9+
- "darwin"
10+
goarch:
11+
- "amd64"
12+
- "arm64"
13+
mod_timestamp: "{{ .CommitTimestamp }}"
14+
ldflags:
15+
- "-s -w"
16+
- "-X github.com/jzelinskie/cobrautil.Version={{ .Version }}"
17+
kos:
18+
- repository: ghcr.io/autzhed/spicedb-kubeapi-proxy
19+
tags:
20+
- 'v{{.Version}}'
21+
- latest
22+
bare: true
23+
preserve_import_paths: false
24+
platforms:
25+
- linux/amd64
26+
- linux/arm64
27+
checksum:
28+
name_template: "checksums.txt"
29+
snapshot:
30+
name_template: "{{ incpatch .Version }}-next"
31+
changelog:
32+
use: "github-native"
33+
sort: "asc"
34+
release:
35+
prerelease: "auto"
36+
extra_files:
37+
- glob: "release/bundle.yaml"
38+
footer: |
39+
> [!NOTE]
40+
> Deploy manifests are still in alpha and may change in the future.
41+
> They install cert-manager manually and don't yet provide a simple
42+
> way to get kubectl access to the proxy. We're working on it!
43+
> Check out the scripts in `magefiles` to see the steps required to connect.
44+
45+
## Install with `kubectl`
46+
47+
```yaml
48+
kubectl apply --server-side -f https://github.com/authzed/spicedb-kubeapi-proxy/releases/download/v{{ .Version }}/bundle.yaml
49+
```
50+
51+
## Include or modify this release in your own `kustomize` bundle
52+
53+
```yaml
54+
apiVersion: kustomize.config.k8s.io/v1beta1
55+
kind: Kustomization
56+
resources:
57+
- https://github.com/authzed/spicedb-kubeapi-proxy/deploy?ref=v{{ .Version }}
58+
images:
59+
- name: authzed/spicedb-kubeapi-proxy:dev
60+
newName: ghcr.io/authzed/spicedb-kubeapi-proxy
61+
newTag: v{{ .Version }}
62+
```
63+
64+
## Install with `kustomizer`
65+
release manifests can be found at `oci://ghcr.io/authzed/spicedb-kubeapi-proxy-manifests:v{{ .Version }}` and can be installed or inspected with [kustomizer](https://kustomizer.dev/):
66+
67+
```sh
68+
kustomizer apply inventory spicedb-kubeapi-proxy --artifact oci://ghcr.io/authzed/spicedb-kubeapi-proxy-manifests:v{{ .Version }}
69+
```
70+
71+
## Docker Images
72+
This release's image is available at:
73+
- `ghcr.io/authzed/spicedb-kubeapi-proxy:v{{ .Version }}`

0 commit comments

Comments
 (0)