Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: use a better name for internal const #153

Merged
merged 1 commit into from
Nov 5, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions cmd/caddy/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ import (

const (
// high enough QPS to fit all expected use cases.
defaultQPS = 1e6
highQPS = 1e6

// high enough Burst to fit all expected use cases.
defaultBurst = 1e6
highBurst = 1e6
)

func createLogger(verbose bool) *zap.SugaredLogger {
Expand Down Expand Up @@ -80,9 +80,10 @@ func createApiserverClient(logger *zap.SugaredLogger) (*kubernetes.Clientset, *v

logger.Infof("Creating API client for %s", cfg.Host)

cfg.QPS = defaultQPS
cfg.Burst = defaultBurst
cfg.QPS = highQPS
cfg.Burst = highBurst
cfg.ContentType = "application/vnd.kubernetes.protobuf"

client, err := kubernetes.NewForConfig(cfg)
if err != nil {
return nil, nil, err
Expand Down