mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-12 12:15:00 +00:00
d253f8cc30
move options based on **os.Getenv** into flags --------- *Sponsored by Kithara Software GmbH*
80 lines
2.1 KiB
Go
80 lines
2.1 KiB
Go
// Copyright 2022 Woodpecker Authors
|
|
//
|
|
// 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 kubernetes
|
|
|
|
import (
|
|
"errors"
|
|
"os"
|
|
"regexp"
|
|
"strings"
|
|
|
|
v1 "k8s.io/api/core/v1"
|
|
"k8s.io/client-go/kubernetes"
|
|
"k8s.io/client-go/rest"
|
|
"k8s.io/client-go/tools/clientcmd"
|
|
)
|
|
|
|
var (
|
|
dnsPattern = regexp.MustCompile(`^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$`)
|
|
ErrDNSPatternInvalid = errors.New("name is not a valid kubernetes DNS name")
|
|
)
|
|
|
|
func dnsName(i string) (string, error) {
|
|
res := strings.Replace(i, "_", "-", -1)
|
|
|
|
if found := dnsPattern.FindStringIndex(res); found == nil {
|
|
return "", ErrDNSPatternInvalid
|
|
}
|
|
|
|
return res, nil
|
|
}
|
|
|
|
func isImagePullBackOffState(pod *v1.Pod) bool {
|
|
for _, containerState := range pod.Status.ContainerStatuses {
|
|
if containerState.State.Waiting != nil {
|
|
if containerState.State.Waiting.Reason == "ImagePullBackOff" {
|
|
return true
|
|
}
|
|
}
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
// getClientOutOfCluster returns a k8s clientset to the request from outside of cluster
|
|
func getClientOutOfCluster() (kubernetes.Interface, error) {
|
|
kubeConfigPath := os.Getenv("KUBECONFIG")
|
|
if kubeConfigPath == "" {
|
|
kubeConfigPath = os.Getenv("HOME") + "/.kube/config"
|
|
}
|
|
|
|
// use the current context in kubeconfig
|
|
config, err := clientcmd.BuildConfigFromFlags("", kubeConfigPath)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return kubernetes.NewForConfig(config)
|
|
}
|
|
|
|
// getClient returns a k8s clientset to the request from inside of cluster
|
|
func getClientInsideOfCluster() (kubernetes.Interface, error) {
|
|
config, err := rest.InClusterConfig()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return kubernetes.NewForConfig(config)
|
|
}
|