Files
sealos/webhooks/admission/pkg/code/code.go
T
yy 7e9a193329 chore: mv admission webhook to webhook dir. (#4885)
* chore: mv admission webhook to webhook dir.
Signed-off-by: yy <lingdie.yy@outlook.com>

Signed-off-by: yy <lingdie.yy@outlook.com>

* chore: fix controllers go work.
Signed-off-by: yy <lingdie.yy@outlook.com>

Signed-off-by: yy <lingdie.yy@outlook.com>

* chore: fix controllers go work.
Signed-off-by: yy <lingdie.yy@outlook.com>

Signed-off-by: yy <lingdie.yy@outlook.com>

* chore: fix webhook go work.
Signed-off-by: yy <lingdie.yy@outlook.com>

Signed-off-by: yy <lingdie.yy@outlook.com>

* chore: fix webhook build.
Signed-off-by: yy <lingdie.yy@outlook.com>

Signed-off-by: yy <lingdie.yy@outlook.com>

---------

Signed-off-by: yy <lingdie.yy@outlook.com>
2024-07-11 17:10:10 +08:00

32 lines
919 B
Go

// Copyright © 2023 sealos.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package code
const (
MessageFormat = "%d: %s"
)
// code
const (
// InsufficientBalance debt webhook
InsufficientBalance = 40001
// IngressFailedCnameCheck admission webhook for ingress
IngressFailedCnameCheck = 40300
IngressFailedOwnerCheck = 40301
IngressFailedIcpCheck = 40302
IngressWebhookInternalError = 50000
)