mirror of https://github.com/kubernetes/kops.git
150 lines
4.3 KiB
Go
150 lines
4.3 KiB
Go
/*
|
|
Copyright 2019 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.
|
|
*/
|
|
|
|
package kubeapiserver
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
corev1 "k8s.io/api/core/v1"
|
|
"k8s.io/kops/pkg/apis/kops"
|
|
"k8s.io/kops/pkg/assets"
|
|
"k8s.io/kops/pkg/k8scodecs"
|
|
"k8s.io/kops/pkg/model"
|
|
"k8s.io/kops/pkg/wellknownports"
|
|
"k8s.io/kops/upup/pkg/fi"
|
|
"k8s.io/kops/upup/pkg/fi/fitasks"
|
|
)
|
|
|
|
// KubeApiserverBuilder builds the static manifest for kube-apiserver-healthcheck sidecar
|
|
type KubeApiserverBuilder struct {
|
|
*model.KopsModelContext
|
|
Lifecycle fi.Lifecycle
|
|
AssetBuilder *assets.AssetBuilder
|
|
}
|
|
|
|
var _ fi.ModelBuilder = &KubeApiserverBuilder{}
|
|
|
|
// Build creates the tasks relating to kube-apiserver
|
|
// Currently we only build the kube-apiserver-healthcheck sidecar
|
|
func (b *KubeApiserverBuilder) Build(c *fi.ModelBuilderContext) error {
|
|
manifest, err := b.buildManifest()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
manifestYAML, err := k8scodecs.ToVersionedYaml(manifest)
|
|
if err != nil {
|
|
return fmt.Errorf("error marshaling manifest to yaml: %v", err)
|
|
}
|
|
|
|
key := "kube-apiserver-healthcheck"
|
|
location := "manifests/static/" + key + ".yaml"
|
|
|
|
c.AddTask(&fitasks.ManagedFile{
|
|
Contents: fi.NewBytesResource(manifestYAML),
|
|
Lifecycle: b.Lifecycle,
|
|
Location: fi.String(location),
|
|
Name: fi.String("manifests-static-" + key),
|
|
})
|
|
|
|
b.AssetBuilder.StaticManifests = append(b.AssetBuilder.StaticManifests, &assets.StaticManifest{
|
|
Key: key,
|
|
Path: location,
|
|
Roles: []kops.InstanceGroupRole{kops.InstanceGroupRoleMaster, kops.InstanceGroupRoleAPIServer},
|
|
})
|
|
return nil
|
|
}
|
|
|
|
func (b *KubeApiserverBuilder) buildManifest() (*corev1.Pod, error) {
|
|
return b.buildHealthcheckSidecar()
|
|
}
|
|
|
|
const defaultManifest = `
|
|
apiVersion: v1
|
|
kind: Pod
|
|
spec:
|
|
containers:
|
|
- name: healthcheck
|
|
image: registry.k8s.io/kops/kube-apiserver-healthcheck:1.24.0-alpha.5
|
|
livenessProbe:
|
|
httpGet:
|
|
# The sidecar serves a healthcheck on the same port,
|
|
# but with a .kube-apiserver-healthcheck prefix
|
|
path: /.kube-apiserver-healthcheck/healthz
|
|
port: %d
|
|
host: 127.0.0.1
|
|
initialDelaySeconds: 5
|
|
timeoutSeconds: 5
|
|
args:
|
|
- --ca-cert=/secrets/ca.crt
|
|
- --client-cert=/secrets/client.crt
|
|
- --client-key=/secrets/client.key
|
|
securityContext:
|
|
runAsNonRoot: true
|
|
runAsUser: 10012
|
|
volumeMounts:
|
|
- name: healthcheck-secrets
|
|
mountPath: /secrets
|
|
readOnly: true
|
|
volumes:
|
|
- name: healthcheck-secrets
|
|
hostPath:
|
|
path: /etc/kubernetes/kube-apiserver-healthcheck/secrets
|
|
type: Directory
|
|
`
|
|
|
|
// buildHealthcheckSidecar builds the partial pod for the healthcheck sidecar.
|
|
// nodeup will merge it into the kube-apiserver pod.
|
|
func (b *KubeApiserverBuilder) buildHealthcheckSidecar() (*corev1.Pod, error) {
|
|
// TODO: pull from bundle
|
|
bundle := "(embedded kube-apiserver-healthcheck manifest)"
|
|
manifest := []byte(fmt.Sprintf(defaultManifest, wellknownports.KubeAPIServerHealthCheck))
|
|
|
|
var pod *corev1.Pod
|
|
var container *corev1.Container
|
|
{
|
|
objects, err := model.ParseManifest(manifest)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if len(objects) != 1 {
|
|
return nil, fmt.Errorf("expected exactly one object in manifest %s, found %d", bundle, len(objects))
|
|
}
|
|
if podObject, ok := objects[0].(*corev1.Pod); !ok {
|
|
return nil, fmt.Errorf("expected Pod object in manifest %s, found %T", bundle, objects[0])
|
|
} else {
|
|
pod = podObject
|
|
}
|
|
|
|
if len(pod.Spec.Containers) != 1 {
|
|
return nil, fmt.Errorf("expected exactly one container in etcd-manager Pod, found %d", len(pod.Spec.Containers))
|
|
}
|
|
container = &pod.Spec.Containers[0]
|
|
}
|
|
|
|
// Remap image via AssetBuilder
|
|
{
|
|
remapped, err := b.AssetBuilder.RemapImage(container.Image)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("unable to remap container image %q: %v", container.Image, err)
|
|
}
|
|
container.Image = remapped
|
|
}
|
|
|
|
return pod, nil
|
|
}
|