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

Enable mycelium in all solutions #2749

Merged
merged 1 commit into from
May 21, 2024
Merged
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
2 changes: 1 addition & 1 deletion packages/playground/src/components/caprover_worker.vue
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ import { generateName } from "../utils/strings";
import SelectSolutionFlavor from "./select_solution_flavor.vue";

export function createWorker(name: string = generateName({ prefix: "wr" })): CaproverWorker {
return { name, mycelium: false };
return { name, mycelium: true };
}

export default {
Expand Down
2 changes: 1 addition & 1 deletion packages/playground/src/components/k8s_worker.vue
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ export function createWorker(name: string = generateName({ prefix: "wr" })): K8S
ipv4: false,
ipv6: false,
planetary: true,
mycelium: false,
mycelium: true,
rootFsSize: 2,
dedicated: false,
certified: false,
Expand Down
2 changes: 1 addition & 1 deletion packages/playground/src/weblets/full_vm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ const flist = ref<Flist>();
const ipv4 = ref(false);
const ipv6 = ref(false);
const planetary = ref(true);
const mycelium = ref(false);
const mycelium = ref(true);
const wireguard = ref(false);
const dedicated = ref(false);
const certified = ref(false);
Expand Down
2 changes: 1 addition & 1 deletion packages/playground/src/weblets/micro_vm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ const flist = ref<Flist>();
const ipv4 = ref(false);
const ipv6 = ref(false);
const planetary = ref(true);
const mycelium = ref(false);
const mycelium = ref(true);
const wireguard = ref(false);
const envs = ref<Env[]>([]);
const disks = ref<Disk[]>([]);
Expand Down
2 changes: 1 addition & 1 deletion packages/playground/src/weblets/tf_algorand.vue
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ const flist: Flist = {
};
const name = ref(generateName({ prefix: "al" }));
const ipv4 = ref(false);
const mycelium = ref(false);
const mycelium = ref(true);
const cpu = ref() as Ref<number>;
const memory = ref() as Ref<number>;
const storage = ref() as Ref<number>;
Expand Down
2 changes: 1 addition & 1 deletion packages/playground/src/weblets/tf_casperlabs.vue
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ const flist: Flist = {
const dedicated = ref(false);
const certified = ref(false);
const ipv4 = ref(false);
const mycelium = ref(false);
const mycelium = ref(true);
const rootFilesystemSize = computed(() => rootFs(solution.value?.cpu ?? 0, solution.value?.memory ?? 0));
const selectionDetails = ref<SelectionDetails>();
const selectedSSHKeys = ref("");
Expand Down
2 changes: 1 addition & 1 deletion packages/playground/src/weblets/tf_discourse.vue
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ const name = ref(generateName({ prefix: "dc" }));
const email = ref(profileManager.profile?.email || "");
const solution = ref() as Ref<SolutionFlavor>;
const ipv4 = ref(false);
const mycelium = ref(false);
const mycelium = ref(true);
const smtp = ref(createSMTPServer());
const dedicated = ref(false);
const certified = ref(false);
Expand Down
2 changes: 1 addition & 1 deletion packages/playground/src/weblets/tf_funkwhale.vue
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ const flist: Flist = {
const dedicated = ref(false);
const certified = ref(false);
const ipv4 = ref(false);
const mycelium = ref(false);
const mycelium = ref(true);
const selectionDetails = ref<SelectionDetails>();
const gridStore = useGrid();
const grid = gridStore.client as GridClient;
Expand Down
2 changes: 1 addition & 1 deletion packages/playground/src/weblets/tf_mattermost.vue
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ const ipv4 = ref(false);
const smtp = ref(createSMTPServer());
const rootFilesystemSize = computed(() => rootFs(solution.value?.cpu ?? 0, solution.value?.memory ?? 0));
const selectionDetails = ref<SelectionDetails>();
const mycelium = ref(false);
const mycelium = ref(true);
const selectedSSHKeys = ref("");
const gridStore = useGrid();
const grid = gridStore.client as GridClient;
Expand Down
2 changes: 1 addition & 1 deletion packages/playground/src/weblets/tf_nextcloud.vue
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ const flist: Flist = {
const dedicated = ref(false);
const certified = ref(false);
const ipv4 = ref(false);
const mycelium = ref(false);
const mycelium = ref(true);
const rootFilesystemSize = computed(() => rootFs(solution.value?.cpu ?? 0, solution.value?.memory ?? 0));
const selectionDetails = ref<SelectionDetails>();
const selectedSSHKeys = ref("");
Expand Down
2 changes: 1 addition & 1 deletion packages/playground/src/weblets/tf_owncloud.vue
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ const flist: Flist = {
const dedicated = ref(false);
const certified = ref(false);
const ipv4 = ref(false);
const mycelium = ref(false);
const mycelium = ref(true);
const smtp = ref(createSMTPServer());
const rootFilesystemSize = computed(() => rootFs(solution.value?.cpu ?? 0, solution.value?.memory ?? 0));
const selectedSSHKeys = ref("");
Expand Down
2 changes: 1 addition & 1 deletion packages/playground/src/weblets/tf_peertube.vue
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ const certified = ref(false);
const ipv4 = ref(false);
const rootFilesystemSize = computed(() => rootFs(solution.value?.cpu ?? 0, solution.value?.memory ?? 0));
const selectionDetails = ref<SelectionDetails>();
const mycelium = ref(false);
const mycelium = ref(true);
const selectedSSHKeys = ref("");
const gridStore = useGrid();
const grid = gridStore.client as GridClient;
Expand Down
2 changes: 1 addition & 1 deletion packages/playground/src/weblets/tf_presearch.vue
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ const flist: Flist = {
const dedicated = ref(false);
const certified = ref(false);
const selectionDetails = ref<SelectionDetails>();
const mycelium = ref(false);
const mycelium = ref(true);
const selectedSSHKeys = ref("");
const gridStore = useGrid();
const grid = gridStore.client as GridClient;
Expand Down
2 changes: 1 addition & 1 deletion packages/playground/src/weblets/tf_staticwebsite.vue
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ const root = ref("");
const domain = ref();

const ipv4 = ref(false);
const mycelium = ref(false);
const mycelium = ref(true);
const solution = ref() as Ref<SolutionFlavor>;
const flist: Flist = {
// Should be upgraded to an oficial Flist
Expand Down
2 changes: 1 addition & 1 deletion packages/playground/src/weblets/tf_subsquid.vue
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ const profileManager = useProfileManager();
const name = ref(generateName({ prefix: "ss" }));
const endpoint = ref("");
const ipv4 = ref(false);
const mycelium = ref(false);
const mycelium = ref(true);
const solution = ref() as Ref<SolutionFlavor>;
const flist: Flist = {
value: "https://hub.grid.tf/tf-official-apps/subsquid-latest.flist",
Expand Down
2 changes: 1 addition & 1 deletion packages/playground/src/weblets/tf_taiga.vue
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ const flist: Flist = {
const dedicated = ref(false);
const certified = ref(false);
const ipv4 = ref(false);
const mycelium = ref(false);
const mycelium = ref(true);
const smtp = ref(createSMTPServer());
const rootFilesystemSize = computed(() => rootFs(solution.value?.cpu ?? 0, solution.value?.memory ?? 0));
const selectionDetails = ref<SelectionDetails>();
Expand Down
2 changes: 1 addition & 1 deletion packages/playground/src/weblets/tf_umbrel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ const dedicated = ref(false);
const certified = ref(false);
const rootFilesystemSize = computed(() => rootFs(solution.value?.cpu ?? 0, solution.value?.memory ?? 0));
const selectionDetails = ref<SelectionDetails>();
const mycelium = ref(false);
const mycelium = ref(true);
const selectedSSHKeys = ref("");
const gridStore = useGrid();
const grid = gridStore.client as GridClient;
Expand Down
2 changes: 1 addition & 1 deletion packages/playground/src/weblets/tf_wordpress.vue
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ const flist: Flist = {
const dedicated = ref(false);
const certified = ref(false);
const ipv4 = ref(false);
const mycelium = ref(false);
const mycelium = ref(true);
const rootFilesystemSize = computed(() => rootFs(solution.value?.cpu ?? 0, solution.value?.memory ?? 0));
const selectionDetails = ref<SelectionDetails>();
const selectedSSHKeys = ref("");
Expand Down
Loading