2019-01-12 04:58:27 +00:00
|
|
|
/*
|
|
|
|
Copyright 2017 The Kubernetes 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.
|
|
|
|
*/
|
|
|
|
|
2020-12-01 01:06:26 +00:00
|
|
|
package controlplane
|
2019-01-12 04:58:27 +00:00
|
|
|
|
|
|
|
import (
|
2020-03-26 21:07:15 +00:00
|
|
|
"context"
|
2019-01-12 04:58:27 +00:00
|
|
|
corev1 "k8s.io/api/core/v1"
|
|
|
|
"k8s.io/apimachinery/pkg/api/errors"
|
|
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
|
|
corev1client "k8s.io/client-go/kubernetes/typed/core/v1"
|
|
|
|
)
|
|
|
|
|
|
|
|
func createNamespaceIfNeeded(c corev1client.NamespacesGetter, ns string) error {
|
2020-03-26 21:07:15 +00:00
|
|
|
if _, err := c.Namespaces().Get(context.TODO(), ns, metav1.GetOptions{}); err == nil {
|
2019-01-12 04:58:27 +00:00
|
|
|
// the namespace already exists
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
newNs := &corev1.Namespace{
|
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
|
|
Name: ns,
|
|
|
|
Namespace: "",
|
|
|
|
},
|
|
|
|
}
|
2020-03-26 21:07:15 +00:00
|
|
|
_, err := c.Namespaces().Create(context.TODO(), newNs, metav1.CreateOptions{})
|
2019-01-12 04:58:27 +00:00
|
|
|
if err != nil && errors.IsAlreadyExists(err) {
|
|
|
|
err = nil
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|