Skip to content

Commit

Permalink
update default value of the helm version and number of restart threshold
Browse files Browse the repository at this point in the history
  • Loading branch information
Anmol1696 committed Jul 26, 2024
1 parent 1abb933 commit 92136d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clients/js/packages/client/src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export interface PodPorts {
}

const defaultName: string = "starship"
const defaultVersion: string = "v0.2.6"
const defaultVersion: string = "v0.2.10"

// TODO talk to Anmol about moving these into yaml, if not already possible?
const defaultPorts: PodPorts = {
Expand Down Expand Up @@ -114,7 +114,7 @@ export class StarshipClient implements StarshipClientI {
private podStatuses = new Map<string, PodStatus>(); // To keep track of pod statuses

// Define a constant for the restart threshold
private readonly RESTART_THRESHOLD = 4;
private readonly RESTART_THRESHOLD = 3;

constructor(ctx: StarshipContext) {
this.ctx = deepmerge(defaultStarshipContext, ctx);
Expand Down

0 comments on commit 92136d3

Please sign in to comment.