Skip to content

Commit

Permalink
fix: more bugs
Browse files Browse the repository at this point in the history
Signed-off-by: Vishal Choudhary <[email protected]>
  • Loading branch information
vishal-chdhry committed Oct 31, 2024
1 parent 83e8f7b commit cc3287a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions charts/reports-server/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ podSecurityContext:
# @default -- See [values.yaml](values.yaml)
securityContext:
capabilities:
drop:
- ALL
drop:
- ALL
readOnlyRootFilesystem: true
runAsNonRoot: true
runAsUser: 1000
Expand Down
2 changes: 1 addition & 1 deletion pkg/storage/etcd/new.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ func New(cfg *EtcdConfig) (api.Storage, error) {
}
if cfg.Insecure {
clientCfg.TLS = &tls.Config{
InsecureSkipVerify: true,
InsecureSkipVerify: true, //nolint:gosec
}
clientCfg.DialOptions = []grpc.DialOption{grpc.WithTransportCredentials(insecure.NewCredentials())}
}
Expand Down

0 comments on commit cc3287a

Please sign in to comment.