File tree 1 file changed +3
-0
lines changed
1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -85,19 +85,22 @@ pub(crate) fn build_cli() -> Command {
85
85
. long( "cert-file" )
86
86
. value_name( "CERT_FILE" )
87
87
. env( "KUBEWARDEN_CERT_FILE" )
88
+ . value_parser( clap:: builder:: PathBufValueParser :: new( ) )
88
89
. help( "Path to an X.509 certificate file for HTTPS" ) ,
89
90
90
91
Arg :: new( "key-file" )
91
92
. long( "key-file" )
92
93
. value_name( "KEY_FILE" )
93
94
. env( "KUBEWARDEN_KEY_FILE" )
95
+ . value_parser( clap:: builder:: PathBufValueParser :: new( ) )
94
96
. help( "Path to an X.509 private key file for HTTPS" ) ,
95
97
96
98
Arg :: new( "client-ca-file" )
97
99
. long( "client-ca-file" )
98
100
. value_delimiter( ',' )
99
101
. value_name( "CLIENT_CA_FILE" )
100
102
. env( "KUBEWARDEN_CLIENT_CA_FILE" )
103
+ . value_parser( clap:: builder:: PathBufValueParser :: new( ) )
101
104
. help( "Path to an CA certificate file that issued the client certificate. Required to enable mTLS" ) ,
102
105
103
106
Arg :: new( "policies" )
You can’t perform that action at this time.
0 commit comments