Skip to content

Commit 92136d3

Browse files
committed
update default value of the helm version and number of restart threshold
1 parent 1abb933 commit 92136d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clients/js/packages/client/src/client.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export interface PodPorts {
4747
}
4848

4949
const defaultName: string = "starship"
50-
const defaultVersion: string = "v0.2.6"
50+
const defaultVersion: string = "v0.2.10"
5151

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

116116
// Define a constant for the restart threshold
117-
private readonly RESTART_THRESHOLD = 4;
117+
private readonly RESTART_THRESHOLD = 3;
118118

119119
constructor(ctx: StarshipContext) {
120120
this.ctx = deepmerge(defaultStarshipContext, ctx);

0 commit comments

Comments
 (0)