Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0.4 Release #105

Merged
merged 28 commits into from
Sep 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
5951823
Exit Node CRD v1.1: Allow multiple services per exit node (wip)
korewaChino Jun 4, 2024
b15510a
refactor: use ExitNodeStatus::new constructor
korewaChino Jun 4, 2024
02222e6
update CRD and version number
korewaChino Jun 4, 2024
dc7fd85
oops
korewaChino Jun 4, 2024
c52c681
update helm chart
korewaChino Jun 4, 2024
608a5ed
fix!: make CRD version v2 because we can't put subvers in it
korewaChino Jul 9, 2024
9f89723
run cargo fmt --all
korewaChino Jul 9, 2024
6365e26
docs: Update instructions to use stable branch
korewaChino Jul 12, 2024
d9c141e
chore(deps): bump the npm_and_yarn group in /site with 2 updates
dependabot[bot] Jul 2, 2024
1dd24f0
chore(deps): bump uuid from 1.7.0 to 1.9.1
dependabot[bot] Jul 1, 2024
512f6fd
chore(deps): bump serde from 1.0.197 to 1.0.204
dependabot[bot] Jul 12, 2024
eea3e94
chore(deps): bump @astrojs/check from 0.5.6 to 0.8.1 in /site
dependabot[bot] Jul 15, 2024
e91bf6d
Create SECURITY.md
lleyton Jul 27, 2024
9fa4a96
minor doc indent fix
korewaChino Sep 25, 2024
e1e2c2a
Remove service bindings, all services can now be forced to be bound t…
korewaChino Sep 25, 2024
7eb3119
cargo clippy --fix
korewaChino Sep 25, 2024
632617c
take care of some warnings
korewaChino Sep 25, 2024
7aa10ef
attempt to helm chart
korewaChino Sep 25, 2024
0767a34
update chart
korewaChino Sep 25, 2024
407f074
oops
korewaChino Sep 25, 2024
c4de061
damn
korewaChino Sep 25, 2024
b03c4e2
oops, i forgot the path
korewaChino Sep 25, 2024
ffdbd6c
try doing this
korewaChino Sep 25, 2024
02a09da
rename chart to chisel-operator-chart
korewaChino Sep 25, 2024
09258c3
Don't actually tag value in here because we're gonna use chart AppVer…
korewaChino Sep 25, 2024
6141de9
change chart name back
korewaChino Sep 25, 2024
5b8e483
bump appversion to 0.4
korewaChino Sep 25, 2024
53600ef
docs: add helm chart instructions
korewaChino Sep 25, 2024
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
41 changes: 41 additions & 0 deletions .github/workflows/helm-oci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Helm OCI

on:
schedule:
- cron: "15 14 * * *"
push:
paths:
- "charts/**"
- ".github/workflows/helm-oci.yml"

branches: ["main", "stable"]
# Publish semver tags as releases.
# tags: ["v*.*.*"]
pull_request:
branches: ["main"]
workflow_dispatch:

jobs:
docker:

permissions:
contents: read
packages: write
# This is used to complete the identity challenge
# with sigstore/fulcio when running outside of PRs.
id-token: write
# uses: appany/[email protected]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: appany/[email protected]
with:
name: chisel-operator
repository: fyralabs/chisel-operator
tag: 0.1.0
path: charts/chisel-operator
registry: ghcr.io
registry_username: ${{ github.actor }}
registry_password: ${{ secrets.GITHUB_TOKEN }}
# update_dependencies: true

Loading
Loading