@leverege/build-tools 2.19.2 → 2.20.0-beta.1
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.
|
Binary file
|
|
@@ -53,7 +53,7 @@ class Templates {
|
|
|
53
53
|
}
|
|
54
54
|
|
|
55
55
|
needsAnIngestionPort(template) {
|
|
56
|
-
return template.type === 'ingestor' && template.subType !== 'PubSub';
|
|
56
|
+
return template.type === 'ingestor' && template.subType !== 'PubSub' && template.subType !== 'HTTP';
|
|
57
57
|
}
|
|
58
58
|
|
|
59
59
|
async runInquiry(spec) {
|
|
@@ -116,7 +116,7 @@ class Templates {
|
|
|
116
116
|
type: 'confirm',
|
|
117
117
|
name: 'template.helmify',
|
|
118
118
|
message: 'Run helmify to generate Helm Charts?',
|
|
119
|
-
default:
|
|
119
|
+
default: false,
|
|
120
120
|
when: answers => {
|
|
121
121
|
const template = this.lookupTemplateByType(answers.template.type);
|
|
122
122
|
return typeof template.helm !== 'undefined';
|