You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
file: Flags.string({description: "Path to add-on input file",exclusive: ['helmUrl']}),// or file or URL, full or bits
43
+
// todo check Flags.url type
44
+
file: Flags.string({description: "Path to add-on input file",exclusive: ['helmUrl'],char:'f'}),// or file or URL, full or bits
44
45
helmUrl: Flags.string({description: "Fully qualified URL of the Repo",exclusive: ['file']}),// fully qualified URL of helm repo
45
-
helmRepo: Flags.string({description: "Helm repo of the addon",exclusive: ['file','helmUrl']}),// construct it piecemeal
46
-
protocol: Flags.string({description: "Protocol of the helm hosting to use",exclusive: ['file','helmUrl']}),
47
-
version: Flags.string({description: "Version of the addon to validate",exclusive: ['file']}),
46
+
helmRepo: Flags.string({description: "Helm repo of the addon",exclusive: ['file','helmUrl'],char:'r'}),// construct it piecemeal
47
+
protocol: Flags.string({description: "Protocol of the helm hosting to use",exclusive: ['file','helmUrl'],char:'p'}),
48
+
version: Flags.string({description: "Version of the addon to validate",exclusive: ['file'],char:'v'}),
48
49
addonName: Flags.string({description: "Name of the addon"}),
49
-
extended: Flags.boolean({description: "Run extended validation",hidden: true}),// triggers security and extended checks. NEEDS THE CONTAINER IMAGE FOR THE ADDON
50
-
// todo check Flags.url type
50
+
extended: Flags.boolean({description: "Run extended validation",hidden: true,char:'e'}),// triggers security and extended checks. NEEDS THE CONTAINER IMAGE FOR THE ADDON
51
51
}
52
52
53
53
staticsummary="Validates the addon after pulling it from the helm repository.";
0 commit comments