Skip to content

Commit

Permalink
fix: Switch InsecureSkipVerify to true
Browse files Browse the repository at this point in the history
Signed-off-by: Simon Behar <simbeh7@gmail.com>
  • Loading branch information
simster7 committed Apr 1, 2021
1 parent ed54f15 commit cfc0557
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/argo/commands/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ See %s`, help.ArgoSever),
}
tlsConfig = &tls.Config{
Certificates: []tls.Certificate{cer},
InsecureSkipVerify: false, // InsecureSkipVerify will not impact the TLS listener. It is needed for the server to speak to itself for GRPC.
InsecureSkipVerify: true,
MinVersion: uint16(tlsMinVersion),
}
} else {
Expand Down

0 comments on commit cfc0557

Please sign in to comment.