-
Notifications
You must be signed in to change notification settings - Fork 274
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1b89446
commit d08c2d9
Showing
6 changed files
with
80 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/* | ||
* Copyright (C) 2018-2023 Garden Technologies, Inc. <info@garden.io> | ||
* | ||
* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
*/ | ||
|
||
import { Resolved } from "../../../actions/types" | ||
import { ContainerDeployAction } from "../../container/config" | ||
import { KubernetesProvider } from "../config" | ||
import { ServiceIngressWithCert } from "../container/ingress" | ||
|
||
export async function getEphemeralClusterIngresses( | ||
action: Resolved<ContainerDeployAction>, | ||
provider: KubernetesProvider | ||
): Promise<ServiceIngressWithCert[]> { | ||
const ingresses = action.getSpec("ingresses") | ||
const portsSpec = action.getSpec("ports") | ||
return ingresses.map((ingressSpec) => { | ||
const ingressPort = portsSpec?.find((p) => p.name === ingressSpec.port) | ||
return { | ||
...ingressSpec, | ||
hostname: `${action.name}-${ingressPort?.servicePort}-${provider.config.defaultHostname}`, | ||
path: ingressSpec.path, | ||
port: undefined, | ||
spec: ingressSpec, | ||
protocol: "https", | ||
} | ||
}) | ||
} | ||
|
||
export function addEphemeralClusterIngressAnnotation(annotations: { [name: string]: string }): { | ||
[name: string]: string | ||
} { | ||
annotations["kubernetes.namespace.so/expose"] = "true" | ||
return annotations | ||
} |