Browse Source

Fix deploy heketi show selector missing error. (#5738)

pull/5174/head
keyboardfann 5 years ago
committed by GitHub
parent
commit
64190dfc73
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 0 deletions
  1. 5
      contrib/network-storage/heketi/roles/provision/templates/glusterfs-daemonset.json.j2
  2. 5
      contrib/network-storage/heketi/roles/provision/templates/heketi-bootstrap.json.j2
  3. 5
      contrib/network-storage/heketi/roles/provision/templates/heketi-deployment.json.j2

5
contrib/network-storage/heketi/roles/provision/templates/glusterfs-daemonset.json.j2

@ -12,6 +12,11 @@
}
},
"spec": {
"selector": {
"matchLabels": {
"glusterfs-node": "daemonset"
}
},
"template": {
"metadata": {
"name": "glusterfs",

5
contrib/network-storage/heketi/roles/provision/templates/heketi-bootstrap.json.j2

@ -42,6 +42,11 @@
}
},
"spec": {
"selector": {
"matchLabels": {
"name": "deploy-heketi"
}
},
"replicas": 1,
"template": {
"metadata": {

5
contrib/network-storage/heketi/roles/provision/templates/heketi-deployment.json.j2

@ -55,6 +55,11 @@
}
},
"spec": {
"selector": {
"matchLabels": {
"name": "heketi"
}
},
"replicas": 1,
"template": {
"metadata": {

Loading…
Cancel
Save