forked from authzed/spicedb-operator
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
32 changed files
with
1,121 additions
and
684 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -101,6 +101,25 @@ jobs: | |
with: | ||
version: "latest" | ||
args: "test:e2e" | ||
- name: "Check if validated update graph has changed" | ||
uses: "tj-actions/verify-changed-files@v13" | ||
id: "verify-changed-graph" | ||
with: | ||
files: | | ||
validated-update-graph.yaml | ||
- name: "Commit validated update graph" | ||
uses: "EndBug/add-and-commit@v9" | ||
if: | | ||
steps.verify-changed-graph.outputs.files_changed == 'true' | ||
with: | ||
author_name: "Authzed, Inc." | ||
author_email: "[email protected]" | ||
committer_name: "GitHub Actions" | ||
committer_email: "41898282+github-actions[bot]@users.noreply.github.com" | ||
message: "update validated graph after successful tests" | ||
pathspec_error_handling: "exitImmediately" | ||
push: true | ||
tag: "${{github.ref_name}}" | ||
- uses: "actions/upload-artifact@v2" | ||
if: "always()" | ||
# this upload step is really flaky, don't fail the job if it fails | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,5 @@ release/ | |
*.kubeconfig | ||
*.test | ||
e2e/cluster-state/** | ||
e2e/*.lck | ||
e2e/*.lck.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# vim: syntax=dockerfile | ||
FROM gcr.io/distroless/base | ||
COPY default-operator-config.yaml /opt/operator/config.yaml | ||
COPY validated-update-graph.yaml /opt/operator/config.yaml | ||
COPY --from=ghcr.io/grpc-ecosystem/grpc-health-probe:v0.4.12 /ko-app/grpc-health-probe /usr/local/bin/grpc_health_probe | ||
COPY spicedb-operator /usr/local/bin/spicedb-operator | ||
ENTRYPOINT ["spicedb-operator"] |
Oops, something went wrong.