Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update ks installer v3 #255

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/main/ks-installer/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.3.1
version: 0.3.2

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
appVersion: 3.2.1
appVersion: 3.3.0
152 changes: 82 additions & 70 deletions src/main/ks-installer/templates/clusterrole.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,192 +6,204 @@ rules:
- apiGroups:
- ""
resources:
- '*'
- "*"
verbs:
- '*'
- "*"
- apiGroups:
- apps
resources:
- '*'
- "*"
verbs:
- '*'
- "*"
- apiGroups:
- extensions
resources:
- '*'
- "*"
verbs:
- '*'
- "*"
- apiGroups:
- batch
resources:
- '*'
- "*"
verbs:
- '*'
- "*"
- apiGroups:
- rbac.authorization.k8s.io
resources:
- '*'
- "*"
verbs:
- '*'
- "*"
- apiGroups:
- apiregistration.k8s.io
resources:
- '*'
- "*"
verbs:
- '*'
- "*"
- apiGroups:
- apiextensions.k8s.io
resources:
- '*'
- "*"
verbs:
- '*'
- "*"
- apiGroups:
- tenant.kubesphere.io
resources:
- '*'
- "*"
verbs:
- '*'
- "*"
- apiGroups:
- certificates.k8s.io
resources:
- '*'
- "*"
verbs:
- '*'
- "*"
- apiGroups:
- devops.kubesphere.io
resources:
- '*'
- "*"
verbs:
- '*'
- "*"
- apiGroups:
- monitoring.coreos.com
resources:
- '*'
- "*"
verbs:
- '*'
- "*"
- apiGroups:
- logging.kubesphere.io
resources:
- '*'
- "*"
verbs:
- '*'
- "*"
- apiGroups:
- jaegertracing.io
resources:
- '*'
- "*"
verbs:
- '*'
- "*"
- apiGroups:
- storage.k8s.io
resources:
- '*'
- "*"
verbs:
- '*'
- "*"
- apiGroups:
- admissionregistration.k8s.io
resources:
- '*'
- "*"
verbs:
- '*'
- "*"
- apiGroups:
- policy
resources:
- '*'
- "*"
verbs:
- '*'
- "*"
- apiGroups:
- autoscaling
resources:
- '*'
- "*"
verbs:
- '*'
- "*"
- apiGroups:
- networking.istio.io
resources:
- '*'
- "*"
verbs:
- '*'
- "*"
- apiGroups:
- config.istio.io
resources:
- '*'
- "*"
verbs:
- '*'
- "*"
- apiGroups:
- iam.kubesphere.io
resources:
- '*'
- "*"
verbs:
- '*'
- "*"
- apiGroups:
- notification.kubesphere.io
resources:
- '*'
- "*"
verbs:
- '*'
- "*"
- apiGroups:
- auditing.kubesphere.io
resources:
- '*'
- "*"
verbs:
- '*'
- "*"
- apiGroups:
- events.kubesphere.io
resources:
- '*'
- "*"
verbs:
- '*'
- "*"
- apiGroups:
- core.kubefed.io
resources:
- '*'
- "*"
verbs:
- '*'
- "*"
- apiGroups:
- installer.kubesphere.io
resources:
- '*'
- "*"
verbs:
- '*'
- "*"
- apiGroups:
- storage.kubesphere.io
resources:
- '*'
- "*"
verbs:
- '*'
- "*"
- apiGroups:
- security.istio.io
- security.istio.io
resources:
- '*'
- "*"
verbs:
- '*'
- "*"
- apiGroups:
- monitoring.kiali.io
- monitoring.kiali.io
resources:
- '*'
- "*"
verbs:
- '*'
- "*"
- apiGroups:
- kiali.io
- kiali.io
resources:
- '*'
- "*"
verbs:
- '*'
- "*"
- apiGroups:
- networking.k8s.io
- networking.k8s.io
resources:
- '*'
- "*"
verbs:
- '*'
- "*"
- apiGroups:
- kubeedge.kubesphere.io
- edgeruntime.kubesphere.io
resources:
- '*'
- "*"
verbs:
- '*'
- "*"
- apiGroups:
- types.kubefed.io
- types.kubefed.io
resources:
- '*'
- "*"
verbs:
- '*'
- "*"
- apiGroups:
- monitoring.kubesphere.io
resources:
- "*"
verbs:
- "*"
- apiGroups:
- application.kubesphere.io
resources:
- "*"
verbs:
- "*"
1 change: 1 addition & 0 deletions src/main/ks-installer/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ spec:
volumeMounts:
- mountPath: /etc/localtime
name: host-time
readOnly: true
{{- with .Values.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
Expand Down
2 changes: 1 addition & 1 deletion src/main/ks-installer/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ image:
repository: kubesphere/ks-installer
pullPolicy: Always
# Overrides the image tag whose default is the chart appVersion.
tag: v3.2.1
tag: v3.3.0

serviceAccount:
# Specifies whether a service account should be created
Expand Down