Skip to content

Commit

Permalink
Downgrade caprover version to 1.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
AhmedHanafy725 committed Dec 20, 2023
1 parent a16e38d commit c11bacc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/grid_client/scripts/caprover_leader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ async function main() {
SWM_NODE_MODE: "leader",
CAPROVER_ROOT_DOMAIN: "rafy.grid.tf", // update me
DEFAULT_PASSWORD: "captain42",
CAPTAIN_IMAGE_VERSION: "latest",
CAPTAIN_IMAGE_VERSION: "1.10.1",
},
},
],
Expand Down
2 changes: 1 addition & 1 deletion packages/grid_client/scripts/caprover_worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ async function main() {
PUBLIC_KEY: config.ssh_key,
SWM_NODE_MODE: "worker",
LEADER_PUBLIC_IP: "185.206.122.157",
CAPTAIN_IMAGE_VERSION: "latest",
CAPTAIN_IMAGE_VERSION: "1.10.1",
},
},
],
Expand Down
2 changes: 1 addition & 1 deletion packages/playground/src/weblets/tf_caprover.vue
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ async function deploy() {
normalizeCaproverWorker(leader.value, [
{ key: "SWM_NODE_MODE", value: "leader" },
{ key: "CAPROVER_ROOT_DOMAIN", value: domain.value },
{ key: "CAPTAIN_IMAGE_VERSION", value: "latest" },
{ key: "CAPTAIN_IMAGE_VERSION", value: "1.10.1" },
{ key: "PUBLIC_KEY", value: profileManager.profile!.ssh },
{ key: "DEFAULT_PASSWORD", value: password.value },
{ key: "CAPTAIN_IS_DEBUG", value: "true" },
Expand Down
2 changes: 1 addition & 1 deletion packages/weblets/src/utils/deployCaprover.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default async function deployCaprover(data: Caprover, profile: IProfile)
machine.env = {
SWM_NODE_MODE: "leader",
CAPROVER_ROOT_DOMAIN: domain,
CAPTAIN_IMAGE_VERSION: "latest",
CAPTAIN_IMAGE_VERSION: "1.10.1",
PUBLIC_KEY: publicKey,
DEFAULT_PASSWORD: password,
CAPTAIN_IS_DEBUG: "true",
Expand Down

0 comments on commit c11bacc

Please sign in to comment.