mirror of
https://github.com/labring/sealos.git
synced 2026-09-01 15:38:06 +08:00
7e9a193329
* 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>
32 lines
919 B
Go
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
|
|
)
|