Skip to content

Commit 7cb6696

Browse files
committed
Do not overwrite by default in create-{server|signer}-cert
This change updates the oc adm ca create-{server|signer}-cert commands to not overwrite existing cert files. Thus the new default is to leave any existing file as-is. Bug 1512825 Signed-off-by: Monis Khan <[email protected]>
1 parent ddd1f92 commit 7cb6696

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pkg/cmd/server/admin/create_servercert.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ func NewCommandCreateServerCert(commandName string, fullName string, out io.Writ
7676
flags.StringVar(&options.KeyFile, "key", "", "The key file. Choose a name that indicates what the service is.")
7777

7878
flags.StringSliceVar(&options.Hostnames, "hostnames", options.Hostnames, "Every hostname or IP you want server certs to be valid for. Comma delimited list")
79-
flags.BoolVar(&options.Overwrite, "overwrite", true, "Overwrite existing cert files if found. If false, any existing file will be left as-is.")
79+
flags.BoolVar(&options.Overwrite, "overwrite", false, "Overwrite existing cert files if found. If false, any existing file will be left as-is.")
8080

8181
flags.IntVar(&options.ExpireDays, "expire-days", options.ExpireDays, "Validity of the certificate in days (defaults to 2 years). WARNING: extending this above default value is highly discouraged.")
8282

pkg/cmd/server/admin/create_signercert.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ func NewCommandCreateSignerCert(commandName string, fullName string, out io.Writ
5252
options := &CreateSignerCertOptions{
5353
ExpireDays: crypto.DefaultCACertificateLifetimeInDays,
5454
Output: out,
55-
Overwrite: true,
55+
Overwrite: false,
5656
}
5757

5858
cmd := &cobra.Command{

0 commit comments

Comments
 (0)