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
"Prepare an NGINX source directory to be compatible with a specified ingress-nginx version",
207
+
help="Prepare an NGINX source directory to be compatible with a specified ingress-nginx version",
205
208
)
206
209
prepare_parser.set_defaults(func=prepare)
207
210
prepare_parser.add_argument(
208
211
"--ingress-nginx-version",
209
212
metavar="INGRESS_NGINX_VERSION",
210
-
help=
211
-
"Specify the ingress-nginx version for compatibility (e.g., v1.10.3).",
213
+
help="Specify the ingress-nginx version for compatibility (e.g., v1.10.3).",
212
214
required=True,
213
215
)
214
216
prepare_parser.add_argument(
215
217
"--output-dir",
216
-
help=
217
-
f"Directory where the prepared NGINX source code will be saved. Defaults to the current working directory ({os.path.join(CWD, 'ingress-nginx')}).",
218
+
help=f"Directory where the prepared NGINX source code will be saved. Defaults to the current working directory ({os.path.join(CWD, 'ingress-nginx')}).",
218
219
default=os.path.join(CWD, "ingress-nginx"),
219
220
)
220
221
prepare_parser.add_argument(
221
222
"--dry-run",
222
223
action="store_true",
223
-
help=
224
-
"Simulate the process without making any changes. Useful for testing what will happen.",
224
+
help="Simulate the process without making any changes. Useful for testing what will happen.",
0 commit comments