forked from alibaba/higress
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into dockerfile_prepare
- Loading branch information
Showing
21 changed files
with
1,061 additions
and
3,350 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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: "Helm Docs" | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- "*" | ||
|
||
push: | ||
|
||
jobs: | ||
|
||
helm: | ||
name: Helm Docs | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 1 | ||
|
||
- name: Setup Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: '1.22.9' | ||
|
||
- name: Run helm-docs | ||
run: | | ||
GOBIN=$PWD GO111MODULE=on go install github.com/norwoodj/helm-docs/cmd/helm-docs@v1.14.2 | ||
./helm-docs -c ${GITHUB_WORKSPACE}/helm/higress -f ../core/values.yaml | ||
DIFF=$(git diff ${GITHUB_WORKSPACE}/helm/higress/*md) | ||
if [ ! -z "$DIFF" ]; then | ||
echo "Please use helm-docs in your clone, of your fork, of the project, and commit a updated README.md for the chart." | ||
fi | ||
git diff --exit-code | ||
rm -f ./helm-docs |
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 |
---|---|---|
|
@@ -16,4 +16,5 @@ helm/**/charts/**.tgz | |
target/ | ||
tools/hack/cluster.conf | ||
envoy/1.20 | ||
istio/1.12 | ||
istio/1.12 | ||
Cargo.lock |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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,34 @@ | ||
## Higress for Kubernetes | ||
|
||
Higress is a cloud-native api gateway based on Alibaba's internal gateway practices. | ||
|
||
Powered by Istio and Envoy, Higress realizes the integration of the triple gateway architecture of traffic gateway, microservice gateway and security gateway, thereby greatly reducing the costs of deployment, operation and maintenance. | ||
|
||
## Setup Repo Info | ||
|
||
```console | ||
helm repo add higress.io https://higress.io/helm-charts | ||
helm repo update | ||
``` | ||
|
||
## Install | ||
|
||
To install the chart with the release name `higress`: | ||
|
||
```console | ||
helm install higress -n higress-system higress.io/higress --create-namespace --render-subchart-notes | ||
``` | ||
|
||
## Uninstall | ||
|
||
To uninstall/delete the higress deployment: | ||
|
||
```console | ||
helm delete higress -n higress-system | ||
``` | ||
|
||
The command removes all the Kubernetes components associated with the chart and deletes the release. | ||
|
||
## Parameters | ||
|
||
{{ template "chart.valuesSection" . }} |
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
Oops, something went wrong.