This is an automated email from the ASF dual-hosted git repository.
xiaoyu pushed a commit to branch gh-pages
in repository https://gitbox.apache.org/repos/asf/shenyu-helm-chart.git
The following commit(s) were added to refs/heads/gh-pages by this push:
new dfa6a63 docs: update readme && remove useless code (#23)
dfa6a63 is described below
commit dfa6a6389071cdc46a3e2757ec3e553e877df09d
Author: Bird <[email protected]>
AuthorDate: Tue Nov 15 16:17:25 2022 +0800
docs: update readme && remove useless code (#23)
Signed-off-by: Bird <[email protected]>
Signed-off-by: Bird <[email protected]>
---
.github/workflows/release.yml | 32 ---------------
.gitignore | 42 --------------------
README.md | Bin 64 -> 1410 bytes
charts/shenyu/Chart.yaml | 9 -----
charts/shenyu/README.md | 2 -
charts/shenyu/templates/ConfigMap.yaml | 52 -------------------------
charts/shenyu/templates/deployment.yaml | 28 -------------
charts/shenyu/templates/service-admin.yaml | 16 --------
charts/shenyu/templates/service-bootstrap.yaml | 20 ----------
charts/shenyu/values.yaml | 13 -------
10 files changed, 214 deletions(-)
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
deleted file mode 100644
index 47139fe..0000000
--- a/.github/workflows/release.yml
+++ /dev/null
@@ -1,32 +0,0 @@
-name: Release Charts
-
-on:
- push:
- branches:
- - "**-release"
-
-jobs:
- release:
- runs-on: ubuntu-latest
- steps:
- - name: Checkout
- uses: actions/checkout@v2
- with:
- fetch-depth: 0
-
- - name: Configure Git
- run: |
- git config user.name "$GITHUB_ACTOR"
- git config user.email "[email protected]"
- - name: Install Helm
- uses: azure/setup-helm@v1
- with:
- version: v3.4.1
-
- - name: Run chart-releaser
- uses: helm/[email protected]
- with:
- charts_dir: charts
- env:
- CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
- CR_SKIP_EXISTING: true
\ No newline at end of file
diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index 0df3248..0000000
--- a/.gitignore
+++ /dev/null
@@ -1,42 +0,0 @@
-# maven ignore
-target/
-*.class
-*.jar
-*.war
-*.zip
-*.tar
-*.tar.gz
-dependency-reduced-pom.xml
-
-# maven plugin ignore
-release.properties
-cobertura.ser
-*.gpg
-
-# eclipse ignore
-.settings/
-.project
-.classpath
-
-# idea ignore
-.idea/
-*.ipr
-*.iml
-*.iws
-
-# temp ignore
-logs/
-*.log
-*.doc
-*.cache
-*.diff
-*.patch
-*.tmp
-
-# system ignore
-.DS_Store
-Thumbs.db
-
-# agent build ignore
-/agent/
-
diff --git a/README.md b/README.md
index b604490..cdb012a 100644
Binary files a/README.md and b/README.md differ
diff --git a/charts/shenyu/Chart.yaml b/charts/shenyu/Chart.yaml
deleted file mode 100644
index f31bb2d..0000000
--- a/charts/shenyu/Chart.yaml
+++ /dev/null
@@ -1,9 +0,0 @@
-apiVersion: v2
-name: shenyu
-description: A Helm chart for Kubernetes
-type: application
-version: 2.4.2
-appVersion: "1.16.0"
-icon: https://shenyu.apache.org/img/logo.png
-maintainers:
- - name: erdengk
diff --git a/charts/shenyu/README.md b/charts/shenyu/README.md
deleted file mode 100644
index 5e84aba..0000000
--- a/charts/shenyu/README.md
+++ /dev/null
@@ -1,2 +0,0 @@
-# shenyu-helm-chart
-Helm deployment documentation written for Apache/Shenyu
\ No newline at end of file
diff --git a/charts/shenyu/templates/ConfigMap.yaml
b/charts/shenyu/templates/ConfigMap.yaml
deleted file mode 100644
index 3de641f..0000000
--- a/charts/shenyu/templates/ConfigMap.yaml
+++ /dev/null
@@ -1,52 +0,0 @@
-apiVersion: v1
-kind: ConfigMap
-metadata:
- name: shenyu-cm
- namespace: default
-data:
- application-local.yml: |
- server:
- port: 9195
- address: 0.0.0.0
- spring:
- main:
- allow-bean-definition-overriding: true
- application:
- name: shenyu-bootstrap
- management:
- health:
- defaults:
- enabled: false
- shenyu:
- local:
- enabled: true
- file:
- enabled: true
- cross:
- enabled: true
- dubbo:
- parameter: multi
- sync:
- websocket:
- urls: ws://shenyu-admin-svc.shenyu.svc.cluster.local:9095/websocket
- exclude:
- enabled: false
- paths:
- - /favicon.ico
- extPlugin:
- enabled: true
- threads: 1
- scheduleTime: 300
- scheduleDelay: 30
- scheduler:
- enabled: false
- type: fixed
- threads: 16
- logging:
- level:
- root: info
- org.springframework.boot: info
- org.apache.ibatis: info
- org.apache.shenyu.bonuspoint: info
- org.apache.shenyu.lottery: info
- org.apache.shenyu: info
diff --git a/charts/shenyu/templates/deployment.yaml
b/charts/shenyu/templates/deployment.yaml
deleted file mode 100644
index d9d79ae..0000000
--- a/charts/shenyu/templates/deployment.yaml
+++ /dev/null
@@ -1,28 +0,0 @@
-apiVersion: apps/v1
-kind: Deployment
-metadata:
- creationTimestamp: null
- labels:
- name: {{ .Release.Name }}
- app: {{ .Chart.Name }}-{{ .Release.Name}}
- name: {{ .Release.Name}}
-spec:
- replicas: {{ .Values.replicas}}
- selector:
- matchLabels:
- app: {{ .Values.label}}
- strategy: {}
- template:
- metadata:
- creationTimestamp: null
- labels:
- app: {{ .Values.label}}
- spec:
- containers:
- - name: shenyu-admin
- image: {{ .Values.admin.image }}:{{ default "2.4.2" .Values.admin.tag
}}
- resources: {}
- - name: shenyu-bootstrap
- image: {{ .Values.bootstrap.image }}:{{ default "2.4.2"
.Values.bootstrap.tag }}
- resources: {}
-status: {}
\ No newline at end of file
diff --git a/charts/shenyu/templates/service-admin.yaml
b/charts/shenyu/templates/service-admin.yaml
deleted file mode 100644
index 1bc8973..0000000
--- a/charts/shenyu/templates/service-admin.yaml
+++ /dev/null
@@ -1,16 +0,0 @@
-apiVersion: v1
-kind: Service
-metadata:
- creationTimestamp: null
- labels:
- app: {{ .Release.Name}}
- name: shenyu-admin
-spec:
- type: NodePort
- ports:
- - port: 9095
- protocol: TCP
- targetPort: 9095
- nodePort: 31095
- selector:
- app: {{ .Release.Name}}
\ No newline at end of file
diff --git a/charts/shenyu/templates/service-bootstrap.yaml
b/charts/shenyu/templates/service-bootstrap.yaml
deleted file mode 100644
index 103f431..0000000
--- a/charts/shenyu/templates/service-bootstrap.yaml
+++ /dev/null
@@ -1,20 +0,0 @@
-{{ if .Values.bootstrap.enabled }}
-apiVersion: v1
-kind: Service
-metadata:
- creationTimestamp: null
- labels:
- app: {{ .Release.Name}}
- name: shenyu-bootstrap
-spec:
- type: NodePort
- ports:
- - port: 9195
- protocol: TCP
- targetPort: 9195
- nodePort: 31195
- selector:
- app: {{ .Release.Name}}
-status:
- loadBalancer: {}
-{{end}}
diff --git a/charts/shenyu/values.yaml b/charts/shenyu/values.yaml
deleted file mode 100644
index 1ea3621..0000000
--- a/charts/shenyu/values.yaml
+++ /dev/null
@@ -1,13 +0,0 @@
-replicas: 1
-
-label: shenyu
-version: 2.4.2
-admin:
- enabled: true
- image: apache/shenyu-admin
- tag: 2.4.2
-
-bootstrap:
- enabled: true
- image: apache/shenyu-bootstrap
- tag: 2.4.2