Skip to content

Commit 6bd3744

Browse files
author
Prince Rachit Sinha
committed
Remove unused fields
1 parent b0591ee commit 6bd3744

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.werft/util/certs.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ export class IssueCertificateParams {
1010
domain: string
1111
ip: string
1212
additionalSubdomains: string[]
13-
includeBaseDomain: boolean
1413
pathToKubeConfig: string
1514
bucketPrefixTail: string
1615
certNamespace: string
@@ -61,7 +60,7 @@ export async function issueCertficate(werft, params: IssueCertificateParams) {
6160
werft.log('certificate', `waiting until certificate ${params.certNamespace}/${params.namespace} is ready...`)
6261
let notReadyYet = true;
6362
for (let i = 0; i < 90 && notReadyYet; i++) {
64-
werft.log('certificate', `polling state of certs/${params.namespace}...`)
63+
werft.log('certificate', `polling state of ${params.certNamespace}/${params.namespace}...`)
6564
const result = exec(`export KUBECONFIG=${params.pathToKubeConfig} && kubectl -n ${params.certNamespace} get certificate ${params.namespace} -o jsonpath="{.status.conditions[?(@.type == 'Ready')].status}"`, { silent: true, dontCheckRc: true });
6665
if (result != undefined && result.code === 0 && result.stdout === "True") {
6766
notReadyYet = false;

0 commit comments

Comments
 (0)