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

Updated the ubuntu 20.04 installer branch to bring it upto date with the latest master branch #498

Open
wants to merge 1 commit into
base: ubuntu2004-experimental
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
8 changes: 4 additions & 4 deletions ansible/group_vars/common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ install_gelato_ha_from: release

# These fields below will specify the tag based on install_from type
repo_branch: master
release_version: v1.6.0
release_version: v1.7.0

# This field indicates which os family the system will be running, currently
# support 'Debian' and 'RedHat'
Expand Down Expand Up @@ -74,11 +74,11 @@ opensds_conf_file: /etc/opensds/opensds.conf
api_release_version: v1.1.0
controller_release_version: v1.1.0
dock_release_version: v1.3.0
dashboard_release_version: v1.6.0
gelato_release_version: v1.6.0
dashboard_release_version: v1.7.0
gelato_release_version: v1.7.0
sushi_release_version: v1.4.0
orchestration_release_version: v0.13.0
delfin_release_version: v1.5.0
delfin_release_version: v1.6.0

#################
# URLs, Environment Variables, IP addresses and Ports list
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ spec:
release: {{ .Release.Name }}
spec:
serviceAccount: csi-attacher-block
# https://kubernetes.io/docs/concepts/services-networking/dns-pod-service
hostNetwork: true
dnsPolicy: ClusterFirstWithHostNet
containers:
- name: csi-attacher
image: quay.io/k8scsi/csi-attacher:v1.1.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ spec:
- key: node-role.kubernetes.io/master
effect: NoSchedule
serviceAccount: csi-nodeplugin-block
# https://kubernetes.io/docs/concepts/services-networking/dns-pod-service
hostNetwork: true
dnsPolicy: ClusterFirstWithHostNet
containers:
- name: node-driver-registrar
image: quay.io/k8scsi/csi-node-driver-registrar:v1.1.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ spec:
release: {{ .Release.Name }}
spec:
serviceAccount: csi-provisioner-block
# https://kubernetes.io/docs/concepts/services-networking/dns-pod-service
hostNetwork: true
dnsPolicy: ClusterFirstWithHostNet
containers:
- name: csi-provisioner
image: quay.io/k8scsi/csi-provisioner:v1.1.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ spec:
release: {{ .Release.Name }}
spec:
serviceAccount: csi-snapshotter-block
# https://kubernetes.io/docs/concepts/services-networking/dns-pod-service
hostNetwork: true
dnsPolicy: ClusterFirstWithHostNet
containers:
- name: csi-snapshotter
image: quay.io/k8scsi/csi-snapshotter:v1.1.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ spec:
release: {{ .Release.Name }}
spec:
serviceAccount: csi-attacher-file
# https://kubernetes.io/docs/concepts/services-networking/dns-pod-service
hostNetwork: true
dnsPolicy: ClusterFirstWithHostNet
containers:
- name: csi-attacher
image: quay.io/k8scsi/csi-attacher:v1.1.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ spec:
- key: node-role.kubernetes.io/master
effect: NoSchedule
serviceAccount: csi-nodeplugin-file
# https://kubernetes.io/docs/concepts/services-networking/dns-pod-service
hostNetwork: true
dnsPolicy: ClusterFirstWithHostNet
containers:
- name: node-driver-registrar
image: quay.io/k8scsi/csi-node-driver-registrar:v1.1.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ spec:
release: {{ .Release.Name }}
spec:
serviceAccount: csi-provisioner-file
# https://kubernetes.io/docs/concepts/services-networking/dns-pod-service
hostNetwork: true
dnsPolicy: ClusterFirstWithHostNet
containers:
- name: csi-provisioner
image: quay.io/k8scsi/csi-provisioner:v1.1.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ spec:
release: {{ .Release.Name }}
spec:
serviceAccount: csi-snapshotter-file
# https://kubernetes.io/docs/concepts/services-networking/dns-pod-service
hostNetwork: true
dnsPolicy: ClusterFirstWithHostNet
containers:
- name: csi-snapshotter
image: quay.io/k8scsi/csi-snapshotter:v1.1.0
Expand Down
2 changes: 1 addition & 1 deletion charts/opensds/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ osdsdashboard:
name: dashboard
replicaCount: 1

image: sodafoundation/dashboard:v1.6.0
image: sodafoundation/dashboard:v1.7.0

# ImagePullPolicy: valid values are "IfNotPresent", "Never", and "Always"
imagePullPolicy: IfNotPresent
Expand Down