@crossdelta/infrastructure 0.2.19 → 0.2.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/helpers/image.d.ts +1 -0
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/helpers/image.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import type { Output } from '@pulumi/pulumi';
|
|
|
3
3
|
* Gets the image configuration for a given repository.
|
|
4
4
|
* @param repository - The name of the repository.
|
|
5
5
|
* @returns The image configuration.
|
|
6
|
+
* @deprecated Use project-specific config helper instead
|
|
6
7
|
*/
|
|
7
8
|
export declare const getImage: (repository: string, registryCredentials: Output<string>) => {
|
|
8
9
|
registryType: any;
|
package/dist/index.cjs
CHANGED
|
@@ -338028,7 +338028,7 @@ function deployK8sService(provider, namespace, config2) {
|
|
|
338028
338028
|
if (config2.ingress.tls?.enabled) {
|
|
338029
338029
|
ingressAnnotations["cert-manager.io/cluster-issuer"] = config2.ingress.tls.issuerName ?? "letsencrypt-production";
|
|
338030
338030
|
}
|
|
338031
|
-
const tlsSecretName = config2.ingress.tls?.secretName ??
|
|
338031
|
+
const tlsSecretName = config2.ingress.tls?.secretName ?? `${config2.name}-tls`;
|
|
338032
338032
|
const ingressRules = [];
|
|
338033
338033
|
const createRule = (host) => ({
|
|
338034
338034
|
...host && { host },
|
package/dist/index.js
CHANGED
|
@@ -337953,7 +337953,7 @@ function deployK8sService(provider, namespace, config2) {
|
|
|
337953
337953
|
if (config2.ingress.tls?.enabled) {
|
|
337954
337954
|
ingressAnnotations["cert-manager.io/cluster-issuer"] = config2.ingress.tls.issuerName ?? "letsencrypt-production";
|
|
337955
337955
|
}
|
|
337956
|
-
const tlsSecretName = config2.ingress.tls?.secretName ??
|
|
337956
|
+
const tlsSecretName = config2.ingress.tls?.secretName ?? `${config2.name}-tls`;
|
|
337957
337957
|
const ingressRules = [];
|
|
337958
337958
|
const createRule = (host) => ({
|
|
337959
337959
|
...host && { host },
|