Skip to content

Commit edfe82c

Browse files
committed
Update warning to not mention cost for now
1 parent 6ed426f commit edfe82c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webhooks/ratio_validator.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ func (v *RatioValidator) Handle(ctx context.Context, req admission.Request) admi
8484
Allowed: true,
8585
// WARNING(glrf) Warnings MUST NOT contain newlines. K8s will simply drop your warning if you add newlines.
8686
Warnings: []string{
87-
fmt.Sprintf("Current memory to CPU ratio of %s/core in this namespace is below the fair use ratio of %s/core. This might lead to additional costs.", r, v.RatioLimit),
87+
fmt.Sprintf("Current memory to CPU ratio of %s/core in this namespace is below the fair use ratio of %s/core.", r, v.RatioLimit),
8888
},
8989
}}
9090
}

0 commit comments

Comments
 (0)