Skip to content

Commit

Permalink
Merge pull request #76 from navikt/prod-next
Browse files Browse the repository at this point in the history
Added decorator-next prod ingress
  • Loading branch information
max-nav authored Dec 6, 2023
2 parents 663be01 + 98230d4 commit d72d31b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ type DecoratorNaisEnv =
| "beta" // Beta dev-instanser ment for internt test-bruk
| "betaTms" // Disse kan være ustabile i lengre perioder
| "devNext"; // dev-instans av decorator-next
| "prodNext"; // prod-instans av decorator-next
// decorator-next er under utvikling og er ikke klar for generell bruk

type DecoratorEnvProps =
Expand Down
2 changes: 1 addition & 1 deletion src/common/common-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export type DecoratorBreadcrumb = {
handleInApp?: boolean;
};

export type DecoratorNaisEnv = "prod" | "dev" | "beta" | "betaTms" | "devNext";
export type DecoratorNaisEnv = "prod" | "dev" | "beta" | "betaTms" | "devNext" | "prodNext";

export type DecoratorEnvProps =
| { env: "localhost"; localUrl: string }
Expand Down
2 changes: 2 additions & 0 deletions src/common/urls.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ const externalUrls: NaisUrls = {
beta: "https://dekoratoren-beta.intern.dev.nav.no",
betaTms: "https://dekoratoren-beta-tms.intern.dev.nav.no",
devNext: "https://decorator-next.ekstern.dev.nav.no",
prodNext: "https://www.nav.no/decorator-next"
};

const serviceUrls: NaisUrls = {
Expand All @@ -16,6 +17,7 @@ const serviceUrls: NaisUrls = {
beta: "http://nav-dekoratoren-beta.personbruker",
betaTms: "http://nav-dekoratoren-beta-tms.personbruker",
devNext: "http://decorator-next.personbruker",
prodNext: "http://decorator-next.personbruker"
};

const naisGcpClusters: Record<string, true> = {
Expand Down

0 comments on commit d72d31b

Please sign in to comment.