-
Notifications
You must be signed in to change notification settings - Fork 180
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #422 from ks-ci-bot/sync/ks-core/helm-chart-1.1.2
Update ks-core helm chart from helm-chart-1.1.2
- Loading branch information
Showing
13 changed files
with
247 additions
and
85 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
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 |
---|---|---|
|
@@ -73,6 +73,8 @@ spec: | |
type: string | ||
appVersionID: | ||
type: string | ||
icon: | ||
type: string | ||
values: | ||
format: byte | ||
type: string | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
#!/usr/bin/env bash | ||
|
||
# set -x | ||
|
||
CRD_NAMES=$1 | ||
MAPPING_CONFIG=$2 | ||
|
||
for extension in `kubectl get installplan -o json | jq -r '.items[] | select(.status.state == "Installed") | .metadata.name'` | ||
do | ||
namespace=$(kubectl get installplan $extension -o=jsonpath='{.status.targetNamespace}') | ||
version=$(kubectl get extension $extension -o=jsonpath='{.status.installedVersion}') | ||
extensionversion=$extension-$version | ||
echo "Found extension $extensionversion installed" | ||
helm status $extension --namespace $namespace | ||
if [ $? -eq 0 ]; then | ||
helm mapkubeapis $extension --namespace $namespace --mapfile $MAPPING_CONFIG | ||
fi | ||
helm status $extension-agent --namespace $namespace | ||
if [ $? -eq 0 ]; then | ||
helm mapkubeapis $extension-agent --namespace $namespace --mapfile $MAPPING_CONFIG | ||
fi | ||
done | ||
|
||
|
||
# remove namespace's finalizers && ownerReferences | ||
kubectl patch workspaces.tenant.kubesphere.io system-workspace -p '{"metadata":{"finalizers":[]}}' --type=merge | ||
kubectl patch workspacetemplates.tenant.kubesphere.io system-workspace -p '{"metadata":{"finalizers":[]}}' --type=merge | ||
for ns in $(kubectl get ns -o jsonpath='{.items[*].metadata.name}' -l 'kubesphere.io/managed=true') | ||
do | ||
kubectl label ns $ns kubesphere.io/workspace- && \ | ||
kubectl patch ns $ns -p '{"metadata":{"ownerReferences":[]}}' --type=merge && \ | ||
echo "{\"kind\":\"Namespace\",\"apiVersion\":\"v1\",\"metadata\":{\"name\":\"$ns\",\"finalizers\":null}}" | kubectl replace --raw "/api/v1/namespaces/$ns/finalize" -f - | ||
done | ||
|
||
|
||
# delete crds | ||
for crd in `kubectl get crds -o jsonpath="{.items[*].metadata.name}"` | ||
do | ||
if [[ ${CRD_NAMES[@]/${crd}/} != ${CRD_NAMES[@]} ]]; then | ||
scop=$(eval echo $(kubectl get crd ${crd} -o jsonpath="{.spec.scope}")) | ||
if [[ $scop =~ "Namespaced" ]] ; then | ||
kubectl get $crd -A --no-headers | awk '{print $1" "$2" ""'$crd'"}' | xargs -n 3 sh -c 'kubectl patch $2 -n $0 $1 -p "{\"metadata\":{\"finalizers\":null}}" --type=merge 2>/dev/null && kubectl delete $2 -n $0 $1 2>/dev/null' | ||
else | ||
kubectl get $crd -A --no-headers | awk '{print $1" ""'$crd'"}' | xargs -n 2 sh -c 'kubectl patch $1 $0 -p "{\"metadata\":{\"finalizers\":null}}" --type=merge 2>/dev/null && kubectl delete $1 $0 2>/dev/null' | ||
fi | ||
kubectl delete crd $crd 2>/dev/null; | ||
fi | ||
done |
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,21 @@ | ||
{{- define "kubectl.image" -}} | ||
{{ include "common.images.image" (dict "imageRoot" .Values.kubectl.image "global" (default .Values.global (dict "imageRegistry" "docker.io"))) }} | ||
{{- end -}} | ||
|
||
{{- define "common.images.image" -}} | ||
{{- $registryName := .global.imageRegistry -}} | ||
{{- $repositoryName := .imageRoot.repository -}} | ||
{{- $separator := ":" -}} | ||
{{- $termination := .global.tag | toString -}} | ||
{{- if .imageRoot.registry }} | ||
{{- $registryName = .imageRoot.registry -}} | ||
{{- end -}} | ||
{{- if .imageRoot.tag }} | ||
{{- $termination = .imageRoot.tag | toString -}} | ||
{{- end -}} | ||
{{- if .imageRoot.digest }} | ||
{{- $separator = "@" -}} | ||
{{- $termination = .imageRoot.digest | toString -}} | ||
{{- end -}} | ||
{{- printf "%s/%s%s%s" $registryName $repositoryName $separator $termination -}} | ||
{{- end -}} |
89 changes: 89 additions & 0 deletions
89
src/main/ks-core/charts/ks-crds/templates/post-delete-crd-job.yaml
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,89 @@ | ||
{{- $kubeVersion := .Capabilities.KubeVersion }} | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: "{{ .Release.Name }}-post-delete-crd-scripts" | ||
annotations: | ||
"helm.sh/hook": post-delete | ||
"helm.sh/hook-weight": "-3" | ||
"helm.sh/hook-delete-policy": before-hook-creation,hook-succeeded,hook-failed | ||
data: | ||
map.yaml: | | ||
mappings: | ||
{{- range $path, $_ := .Files.Glob "crds/**" }} | ||
{{- $crd := $.Files.Get $path | fromYaml }} | ||
{{- range $_, $version := $crd.spec.versions }} | ||
- deprecatedAPI: "apiVersion: {{ $crd.spec.group }}/{{ $version.name }}\nkind: {{ $crd.spec.names.kind }}\n" | ||
removedInVersion: "{{ $kubeVersion }}" | ||
{{- end }} | ||
{{- end }} | ||
{{ (.Files.Glob "scripts/post-delete.sh").AsConfig | indent 2 }} | ||
|
||
--- | ||
|
||
apiVersion: v1 | ||
kind: ServiceAccount | ||
metadata: | ||
name: "{{ .Release.Name }}-post-delete-crd" | ||
annotations: | ||
"helm.sh/hook": post-delete | ||
"helm.sh/hook-weight": "-3" | ||
"helm.sh/hook-delete-policy": before-hook-creation,hook-succeeded | ||
|
||
--- | ||
|
||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRoleBinding | ||
metadata: | ||
name: "{{ .Release.Name }}-post-delete-crd" | ||
annotations: | ||
"helm.sh/hook": post-delete | ||
"helm.sh/hook-weight": "-3" | ||
"helm.sh/hook-delete-policy": before-hook-creation,hook-succeeded | ||
roleRef: | ||
apiGroup: rbac.authorization.k8s.io | ||
kind: ClusterRole | ||
name: cluster-admin | ||
subjects: | ||
- kind: ServiceAccount | ||
name: "{{ .Release.Name }}-post-delete-crd" | ||
namespace: {{ .Release.Namespace }} | ||
|
||
--- | ||
|
||
{{- $crdNameList := list }} | ||
{{- range $path, $_ := .Files.Glob "crds/**" }} | ||
{{- $crd := $.Files.Get $path | fromYaml }} | ||
{{- $crdNameList = append $crdNameList $crd.metadata.name }} | ||
{{- end }} | ||
|
||
apiVersion: batch/v1 | ||
kind: Job | ||
metadata: | ||
name: "{{ .Release.Name }}-post-delete-crd" | ||
annotations: | ||
"helm.sh/hook": post-delete | ||
"helm.sh/hook-weight": "-2" | ||
"helm.sh/hook-delete-policy": before-hook-creation,hook-succeeded | ||
spec: | ||
template: | ||
spec: | ||
restartPolicy: Never | ||
serviceAccountName: "{{ .Release.Name }}-post-delete-crd" | ||
containers: | ||
- name: post-delete-job | ||
image: {{ template "kubectl.image" . }} | ||
command: | ||
- /bin/bash | ||
- /scripts/post-delete.sh | ||
- '{{ join " " $crdNameList }}' | ||
- /scripts/map.yaml | ||
volumeMounts: | ||
- mountPath: /scripts | ||
name: scripts | ||
resources: {{- toYaml .Values.kubectl.resources | nindent 12 }} | ||
volumes: | ||
- name: scripts | ||
configMap: | ||
name: "{{ .Release.Name }}-post-delete-crd-scripts" | ||
defaultMode: 420 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,16 @@ | ||
# Default values for ks-crds. | ||
# This is a YAML-formatted file. | ||
# Declare variables to be passed into your templates. | ||
|
||
preUpgrade: | ||
kubectl: | ||
image: | ||
registry: "" | ||
repository: kubesphereio/kubectl | ||
tag: "v1.27.12" | ||
repository: kubesphere/kubectl | ||
tag: "v1.27.16" | ||
pullPolicy: IfNotPresent | ||
resources: | ||
limits: | ||
cpu: 1 | ||
memory: 1024Mi | ||
requests: | ||
cpu: 20m | ||
memory: 100Mi | ||
memory: 100Mi |
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.