-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: Add envoy-gateway * Jsonnetfmt the new file * GitHub workflows change
- Loading branch information
Showing
2 changed files
with
56 additions
and
0 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 |
---|---|---|
|
@@ -899,6 +899,46 @@ | |
"SSH_KEY": "${{ secrets.DEPLOY_KEY }}" | ||
"if": "steps.filter.outputs.workflows == 'true'" | ||
"run": "make libs/emissary" | ||
"envoy-gateway": | ||
"name": "Generate envoy-gateway Jsonnet library and docs" | ||
"needs": | ||
- "build" | ||
- "repos" | ||
"runs-on": "ubuntu-latest" | ||
"steps": | ||
- "uses": "actions/checkout@v3" | ||
- "id": "filter" | ||
"uses": "dorny/paths-filter@v2" | ||
"with": | ||
"filters": | | ||
workflows: | ||
- '.github/**' | ||
- 'bin/**' | ||
- 'Dockerfile' | ||
- 'go.mod' | ||
- 'go.sum' | ||
- 'jsonnet/**' | ||
- 'main.go' | ||
- 'Makefile' | ||
- 'pkg/**' | ||
- 'scripts/**' | ||
- 'tf/**' | ||
- 'libs/envoy-gateway/**' | ||
- "if": "steps.filter.outputs.workflows == 'true'" | ||
"uses": "actions/download-artifact@v2" | ||
"with": | ||
"name": "docker-artifact" | ||
"path": "artifacts" | ||
- "if": "steps.filter.outputs.workflows == 'true'" | ||
"run": "make load" | ||
- "env": | ||
"DIFF": "true" | ||
"GEN_COMMIT": "${{ github.ref == 'refs/heads/master' && github.repository == 'jsonnet-libs/k8s' }}" | ||
"GIT_COMMITTER_EMAIL": "[email protected]" | ||
"GIT_COMMITTER_NAME": "jsonnet-libs-bot" | ||
"SSH_KEY": "${{ secrets.DEPLOY_KEY }}" | ||
"if": "steps.filter.outputs.workflows == 'true'" | ||
"run": "make libs/envoy-gateway" | ||
"external-dns": | ||
"name": "Generate external-dns Jsonnet library and docs" | ||
"needs": | ||
|
@@ -1960,6 +2000,7 @@ | |
- "eck-operator" | ||
- "edp-keycloak-operator" | ||
- "emissary" | ||
- "envoy-gateway" | ||
- "external-dns" | ||
- "external-secrets" | ||
- "flagger" | ||
|
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
local config = import 'jsonnet/config.jsonnet'; | ||
local versions = ['v0.6.0']; | ||
|
||
config.new( | ||
name='envoy-gateway', | ||
specs=[ | ||
{ | ||
output: version, | ||
prefix: '^io\\.envoyproxy\\.gateway\\..*', | ||
crds: ['https://github.com/envoyproxy/gateway/releases/download/%s/install.yaml' % version], | ||
localName: 'envoy-gateway', | ||
} | ||
for version in versions | ||
] | ||
) |