Commit 17038b22 authored by Kevin Di Lallo's avatar Kevin Di Lallo
Browse files

meepctl updates to create minio pv

parent 808ae63d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

version: 1.7.1
version: 1.7.2
repo:
  name: AdvantEDGE

+3 −3
Original line number Diff line number Diff line
@@ -122,7 +122,7 @@ trustedCertsSecret: ""
persistence:
  enabled: true
  reclaimPolicy: Retain
  location: '/home/englab/.meep/minio/'
  location: "<WORKDIR>/minio"

  ## A manually managed Persistent Volume and Claim
  ## Requires persistence.enabled: true
@@ -140,7 +140,7 @@ persistence:
  ## Storage class of PV to bind. By default it looks for standard storage class.
  ## If the PV uses a different storage class, specify that here.
  # storageClass: '-'
  storageClass: 'fullname'
  storageClass: "fullname"
  VolumeName: ""
  accessMode: ReadWriteOnce
  size: 250Gi
@@ -182,7 +182,7 @@ imagePullSecrets: []
ingress:
  enabled: true
  hosts:
    - name: ''
    - name: ""
      paths:
        - /
  annotations:
+1 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

version: 1.7.1
version: 1.7.2
repo:
  name: AdvantEDGE

+1 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

version: 1.7.1
version: 1.7.2
repo:
  name: AdvantEDGE

+3 −0
Original line number Diff line number Diff line
@@ -159,6 +159,7 @@ func deployEnsureStorage(cobraCmd *cobra.Command) {
	cmd.Args = append(cmd.Args, deployData.workdir+"/docker-registry")
	cmd.Args = append(cmd.Args, deployData.workdir+"/grafana")
	cmd.Args = append(cmd.Args, deployData.workdir+"/influxdb")
	cmd.Args = append(cmd.Args, deployData.workdir+"/minio")
	cmd.Args = append(cmd.Args, deployData.workdir+"/tmp")
	cmd.Args = append(cmd.Args, deployData.workdir+"/virt-engine")
	cmd.Args = append(cmd.Args, deployData.workdir+"/virt-engine/user-charts")
@@ -295,6 +296,8 @@ func deployRunScriptsAndGetFlags(targetName string, chart string, cobraCmd *cobr
			flags = utils.HelmFlags(flags, "--set", "controller.service.nodePorts.http="+httpPort)
			flags = utils.HelmFlags(flags, "--set", "controller.service.nodePorts.https="+httpsPort)
		}
	case "meep-minio":
		flags = utils.HelmFlags(flags, "--set", "persistence.location="+deployData.workdir+"/minio/")
	case "meep-open-map-tiles":
		deploySetOmtConfig(chart, cobraCmd)
		flags = utils.HelmFlags(flags, "--set", "persistentVolume.location="+deployData.workdir+"/omt/")
Loading