Skip to content

Commit

Permalink
update ks-core helm chart
Browse files Browse the repository at this point in the history
  • Loading branch information
ks-ci-bot committed Dec 22, 2023
1 parent 76833e7 commit 37d1bca
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 9 deletions.
11 changes: 11 additions & 0 deletions src/test/ks-core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,15 @@ do
kubectl annotate $i meta.helm.sh/release-name=ks-core --overwrite
kubectl annotate $i meta.helm.sh/release-namespace=kubesphere-system --overwrite
done

items=$(kubectl get workspacetemplate -o jsonpath='{.items[*].metadata.name}')

for i in $items
do
network_isolation=$(kubectl get workspacetemplate $i -o jsonpath='{.spec.template.spec.networkIsolation}')

if [ "$network_isolation" == "true" ]; then
kubectl annotate workspacetemplate $i kubesphere.io/network-isolate=enabled --overwrite
fi
done
```
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,6 @@ spec:
authProxy:
description: Add auth proxy header to requests
type: boolean
changeOrigin:
description: Change Host header for name-based virtual hosted
sites.
type: boolean
headerDown:
description: Sets, adds (with the + prefix), deletes (with the
- prefix), or performs a replacement (by using two arguments,
Expand All @@ -57,18 +53,16 @@ spec:
items:
type: string
type: array
interceptRedirects:
description: InterceptRedirects determines whether the proxy should
sniff backend responses for redirects, only allows redirects
to the same host. Deprecated, https://github.com/kubernetes/kubernetes/pull/106830
type: boolean
method:
description: Changes the request's HTTP verb.
type: string
pathRegexp:
items:
type: string
type: array
rejectForwardingRedirects:
description: Reject to forward redirect response
type: boolean
replace:
items:
type: string
Expand Down

0 comments on commit 37d1bca

Please sign in to comment.