This is an automated email from the ASF dual-hosted git repository.
zhongxjian pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/dubbo-helm-charts.git
The following commit(s) were added to refs/heads/main by this push:
new 71fd67c add pixiu gateway readme
71fd67c is described below
commit 71fd67c875079ec00be88c0d8aabab531c1409ed
Author: mfordjody <[email protected]>
AuthorDate: Sun Jan 25 04:56:29 2026 +0800
add pixiu gateway readme
---
.gitignore | 5 +++
.../.helmignore | 0
.../Chart.yaml | 0
charts/pixiu-gateway-crds/README.md | 52 ++++++++++++++++++++++
.../pixiu.apache.org_pixiuclusterpolicies.yaml | 0
.../pixiu.apache.org_pixiufilterpolicies.yaml | 0
.../pixiu.apache.org_pixiugatewaypolicies.yaml | 0
.../gatewayapi-experimental-crds-all.yaml | 0
.../templates/gatewayapi-standard-crds-all.yaml | 0
.../values.yaml | 0
charts/{gateway => pixiu-gateway}/.helmignore | 0
charts/{gateway => pixiu-gateway}/Chart.yaml | 0
charts/pixiu-gateway/README.md | 52 ++++++++++++++++++++++
.../{gateway => pixiu-gateway}/templates/NOTES.txt | 0
.../templates/_helpers.tpl | 0
.../templates/config.yaml | 0
.../templates/deployment.yaml | 0
.../{gateway => pixiu-gateway}/templates/rbac.yaml | 0
.../templates/service.yaml | 0
.../templates/serviceaccount.yaml | 0
charts/{gateway => pixiu-gateway}/values.yaml | 0
21 files changed, 109 insertions(+)
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..f705e85
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,5 @@
+# Chart dependencies
+/charts/*/charts
+.idea
+.vscode
+.DS_Store
\ No newline at end of file
diff --git a/charts/gateway-crds/.helmignore
b/charts/pixiu-gateway-crds/.helmignore
similarity index 100%
rename from charts/gateway-crds/.helmignore
rename to charts/pixiu-gateway-crds/.helmignore
diff --git a/charts/gateway-crds/Chart.yaml
b/charts/pixiu-gateway-crds/Chart.yaml
similarity index 100%
rename from charts/gateway-crds/Chart.yaml
rename to charts/pixiu-gateway-crds/Chart.yaml
diff --git a/charts/pixiu-gateway-crds/README.md
b/charts/pixiu-gateway-crds/README.md
new file mode 100644
index 0000000..769b701
--- /dev/null
+++ b/charts/pixiu-gateway-crds/README.md
@@ -0,0 +1,52 @@
+# Pixiu Gateway CRDs Helm Chart
+
+This chart installs an Pixiu Gateway CRDs.
+
+## Setup Repo Info
+```
+helm repo add dubbo https://charts.dubbo.apache.org
+helm repo update
+```
+See [helm repo](https://helm.sh/docs/helm/helm_repo/) for command
documentation.
+
+## Installing the Chart
+
+To install the chart with the release name dubbo:
+```
+kubectl create namespace dubbo-system
+helm install pixiu-crds dubbo/pixiu-gateway-crds --namespace dubbo-system
+```
+
+## Uninstalling the Chart
+
+To uninstall/delete the dubbo deployment:
+```
+helm delete dubbo --namespace dubbo-system
+```
+
+## Configuration
+
+To view support configuration options and documentation, run:
+```
+helm show values dubbo/pixiu-gateway-crds
+```
+
+### profiles
+Dubbo Helm Chart introduces the concept of profiles, which are predefined sets
of configuration values. You can specify the desired profile using --set
profile=<profile>. For example, the demo profile provides a preset
configuration suitable for testing environments, with additional features
enabled and reduced resource requirements.
+
+To maintain consistency, all charts support the same profiles, even if some
settings don’t apply to a particular chart.
+
+The precedence of values is as follows:
+1. Explicitly set parameters (via --set)
+2. Values defined in the selected profile
+3. Default values of the chart
+
+In actual configuration, you do not need to include the nested path under
defaults. For example, you should use:
+```
+--set some.field=true
+```
+
+instead of:
+```
+--set defaults.some.field=true
+```
\ No newline at end of file
diff --git
a/charts/gateway-crds/templates/extension/pixiu.apache.org_pixiuclusterpolicies.yaml
b/charts/pixiu-gateway-crds/templates/extension/pixiu.apache.org_pixiuclusterpolicies.yaml
similarity index 100%
rename from
charts/gateway-crds/templates/extension/pixiu.apache.org_pixiuclusterpolicies.yaml
rename to
charts/pixiu-gateway-crds/templates/extension/pixiu.apache.org_pixiuclusterpolicies.yaml
diff --git
a/charts/gateway-crds/templates/extension/pixiu.apache.org_pixiufilterpolicies.yaml
b/charts/pixiu-gateway-crds/templates/extension/pixiu.apache.org_pixiufilterpolicies.yaml
similarity index 100%
rename from
charts/gateway-crds/templates/extension/pixiu.apache.org_pixiufilterpolicies.yaml
rename to
charts/pixiu-gateway-crds/templates/extension/pixiu.apache.org_pixiufilterpolicies.yaml
diff --git
a/charts/gateway-crds/templates/extension/pixiu.apache.org_pixiugatewaypolicies.yaml
b/charts/pixiu-gateway-crds/templates/extension/pixiu.apache.org_pixiugatewaypolicies.yaml
similarity index 100%
rename from
charts/gateway-crds/templates/extension/pixiu.apache.org_pixiugatewaypolicies.yaml
rename to
charts/pixiu-gateway-crds/templates/extension/pixiu.apache.org_pixiugatewaypolicies.yaml
diff --git
a/charts/gateway-crds/templates/gatewayapi-experimental-crds-all.yaml
b/charts/pixiu-gateway-crds/templates/gatewayapi-experimental-crds-all.yaml
similarity index 100%
rename from charts/gateway-crds/templates/gatewayapi-experimental-crds-all.yaml
rename to
charts/pixiu-gateway-crds/templates/gatewayapi-experimental-crds-all.yaml
diff --git a/charts/gateway-crds/templates/gatewayapi-standard-crds-all.yaml
b/charts/pixiu-gateway-crds/templates/gatewayapi-standard-crds-all.yaml
similarity index 100%
rename from charts/gateway-crds/templates/gatewayapi-standard-crds-all.yaml
rename to charts/pixiu-gateway-crds/templates/gatewayapi-standard-crds-all.yaml
diff --git a/charts/gateway-crds/values.yaml
b/charts/pixiu-gateway-crds/values.yaml
similarity index 100%
rename from charts/gateway-crds/values.yaml
rename to charts/pixiu-gateway-crds/values.yaml
diff --git a/charts/gateway/.helmignore b/charts/pixiu-gateway/.helmignore
similarity index 100%
rename from charts/gateway/.helmignore
rename to charts/pixiu-gateway/.helmignore
diff --git a/charts/gateway/Chart.yaml b/charts/pixiu-gateway/Chart.yaml
similarity index 100%
rename from charts/gateway/Chart.yaml
rename to charts/pixiu-gateway/Chart.yaml
diff --git a/charts/pixiu-gateway/README.md b/charts/pixiu-gateway/README.md
new file mode 100644
index 0000000..438e4bc
--- /dev/null
+++ b/charts/pixiu-gateway/README.md
@@ -0,0 +1,52 @@
+# Pixiu Gateway Helm Chart
+
+This chart installs an Pixiu Gateway deployment.
+
+## Setup Repo Info
+```
+helm repo add dubbo https://charts.dubbo.apache.org
+helm repo update
+```
+See [helm repo](https://helm.sh/docs/helm/helm_repo/) for command
documentation.
+
+## Installing the Chart
+
+To install the chart with the release name dubbo:
+```
+kubectl create namespace dubbo-system
+helm install pixiu dubbo/pixiu-gateway --namespace dubbo-system
+```
+
+## Uninstalling the Chart
+
+To uninstall/delete the dubbo deployment:
+```
+helm delete dubbo --namespace dubbo-system
+```
+
+## Configuration
+
+To view support configuration options and documentation, run:
+```
+helm show values dubbo/pixiu-gateway
+```
+
+### profiles
+Dubbo Helm Chart introduces the concept of profiles, which are predefined sets
of configuration values. You can specify the desired profile using --set
profile=<profile>. For example, the demo profile provides a preset
configuration suitable for testing environments, with additional features
enabled and reduced resource requirements.
+
+To maintain consistency, all charts support the same profiles, even if some
settings don’t apply to a particular chart.
+
+The precedence of values is as follows:
+1. Explicitly set parameters (via --set)
+2. Values defined in the selected profile
+3. Default values of the chart
+
+In actual configuration, you do not need to include the nested path under
defaults. For example, you should use:
+```
+--set some.field=true
+```
+
+instead of:
+```
+--set defaults.some.field=true
+```
\ No newline at end of file
diff --git a/charts/gateway/templates/NOTES.txt
b/charts/pixiu-gateway/templates/NOTES.txt
similarity index 100%
rename from charts/gateway/templates/NOTES.txt
rename to charts/pixiu-gateway/templates/NOTES.txt
diff --git a/charts/gateway/templates/_helpers.tpl
b/charts/pixiu-gateway/templates/_helpers.tpl
similarity index 100%
rename from charts/gateway/templates/_helpers.tpl
rename to charts/pixiu-gateway/templates/_helpers.tpl
diff --git a/charts/gateway/templates/config.yaml
b/charts/pixiu-gateway/templates/config.yaml
similarity index 100%
rename from charts/gateway/templates/config.yaml
rename to charts/pixiu-gateway/templates/config.yaml
diff --git a/charts/gateway/templates/deployment.yaml
b/charts/pixiu-gateway/templates/deployment.yaml
similarity index 100%
rename from charts/gateway/templates/deployment.yaml
rename to charts/pixiu-gateway/templates/deployment.yaml
diff --git a/charts/gateway/templates/rbac.yaml
b/charts/pixiu-gateway/templates/rbac.yaml
similarity index 100%
rename from charts/gateway/templates/rbac.yaml
rename to charts/pixiu-gateway/templates/rbac.yaml
diff --git a/charts/gateway/templates/service.yaml
b/charts/pixiu-gateway/templates/service.yaml
similarity index 100%
rename from charts/gateway/templates/service.yaml
rename to charts/pixiu-gateway/templates/service.yaml
diff --git a/charts/gateway/templates/serviceaccount.yaml
b/charts/pixiu-gateway/templates/serviceaccount.yaml
similarity index 100%
rename from charts/gateway/templates/serviceaccount.yaml
rename to charts/pixiu-gateway/templates/serviceaccount.yaml
diff --git a/charts/gateway/values.yaml b/charts/pixiu-gateway/values.yaml
similarity index 100%
rename from charts/gateway/values.yaml
rename to charts/pixiu-gateway/values.yaml