Changing F parameter to optional
parent
0b40f91b82
commit
638c5b5065
|
|
@ -7,7 +7,7 @@ parser = argparse.ArgumentParser(description="Generate predefined Dynatrace conf
|
||||||
|
|
||||||
parser.add_argument("-A", "--appname", type=str,required=True, help="Your app_name")
|
parser.add_argument("-A", "--appname", type=str,required=True, help="Your app_name")
|
||||||
parser.add_argument('-C', "--compassid", type=str,required=True, help="Your compass_id")
|
parser.add_argument('-C', "--compassid", type=str,required=True, help="Your compass_id")
|
||||||
parser.add_argument('-F', "--features", type=str,required=True, help="Comma separated additional features. Possible options are: custom_service, processgroup_naming, service_naming")
|
parser.add_argument('-F', "--features", type=str,required=False, help="Comma separated additional features. Possible options are: custom_service, processgroup_naming, service_naming")
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
|
||||||
#Config options for onboarding. Will be extended with other configuration options in future
|
#Config options for onboarding. Will be extended with other configuration options in future
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue