Skip to content
This repository has been archived by the owner on Aug 30, 2023. It is now read-only.

Commit

Permalink
removes mount postgres from mattermost (#675)
Browse files Browse the repository at this point in the history
Signed-off-by: Ashraf Fouda <[email protected]>
  • Loading branch information
ashraffouda authored May 8, 2022
1 parent a6cabf7 commit f47d687
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/utils/deployMattermost.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,11 @@ function _deployMatterMost(profile: IProfile, mattermost: Mattermost) {

let randomSuffix = generateString(10).toLowerCase();

const disk = new DiskModel();
disk.name = `disk${randomSuffix}`;
disk.size = disks[0].size;
disk.mountpoint = "/var/lib/postgresql";

const vm = new MachineModel();
vm.name = name;
vm.node_id = nodeId;
vm.disks = [disk];
vm.disks = [];
vm.public_ip = publicIp;
vm.planetary = true;
vm.cpu = cpu;
Expand Down

0 comments on commit f47d687

Please sign in to comment.