mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
af6a1801ab
* defaulting deocker config json location * function change * harmonising secret creation via json config apply * adding the env path to kaniko * env var * adding path * adding path * adding path * rolling back changes for path * adapting condition for secret creation * conditions based on username and password only * fix unit test as per new secret creation * update documentation with regards to secret creation * fixing yaml lint empty line * fixing trailing line from kaniko yaml * error condition when path of the docker config json file is not found Co-authored-by: anilkeshav27 <you@example.com>
393 lines
14 KiB
Go
393 lines
14 KiB
Go
package cmd
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"fmt"
|
|
"io"
|
|
"io/ioutil"
|
|
"os"
|
|
"path/filepath"
|
|
"regexp"
|
|
"strconv"
|
|
"strings"
|
|
|
|
"github.com/SAP/jenkins-library/pkg/command"
|
|
"github.com/SAP/jenkins-library/pkg/docker"
|
|
"github.com/SAP/jenkins-library/pkg/log"
|
|
"github.com/SAP/jenkins-library/pkg/piperutils"
|
|
"github.com/SAP/jenkins-library/pkg/telemetry"
|
|
)
|
|
|
|
type kubernetesDeployUtils interface {
|
|
SetEnv(env []string)
|
|
Stdout(out io.Writer)
|
|
Stderr(err io.Writer)
|
|
RunExecutable(e string, p ...string) error
|
|
|
|
piperutils.FileUtils
|
|
}
|
|
|
|
type kubernetesDeployUtilsBundle struct {
|
|
*command.Command
|
|
*piperutils.Files
|
|
}
|
|
|
|
func newKubernetesDeployUtilsBundle() kubernetesDeployUtils {
|
|
utils := kubernetesDeployUtilsBundle{
|
|
Command: &command.Command{
|
|
ErrorCategoryMapping: map[string][]string{
|
|
log.ErrorConfiguration.String(): {
|
|
"Error: Get * no such host",
|
|
"Error: path * not found",
|
|
"Error: rendered manifests contain a resource that already exists.",
|
|
"Error: unknown flag",
|
|
"Error: UPGRADE FAILED: * failed to replace object: * is invalid",
|
|
"Error: UPGRADE FAILED: * failed to create resource: * is invalid",
|
|
"Error: UPGRADE FAILED: an error occurred * not found",
|
|
"Error: UPGRADE FAILED: query: failed to query with labels:",
|
|
"Invalid value: \"\": field is immutable",
|
|
},
|
|
log.ErrorCustom.String(): {
|
|
"Error: release * failed, * timed out waiting for the condition",
|
|
},
|
|
},
|
|
},
|
|
Files: &piperutils.Files{},
|
|
}
|
|
// reroute stderr output to logging framework, stdout will be used for command interactions
|
|
utils.Stderr(log.Writer())
|
|
return &utils
|
|
}
|
|
|
|
func kubernetesDeploy(config kubernetesDeployOptions, telemetryData *telemetry.CustomData) {
|
|
utils := newKubernetesDeployUtilsBundle()
|
|
|
|
// error situations should stop execution through log.Entry().Fatal() call which leads to an os.Exit(1) in the end
|
|
err := runKubernetesDeploy(config, utils, log.Writer())
|
|
if err != nil {
|
|
log.Entry().WithError(err).Fatal("step execution failed")
|
|
}
|
|
}
|
|
|
|
func runKubernetesDeploy(config kubernetesDeployOptions, utils kubernetesDeployUtils, stdout io.Writer) error {
|
|
if config.DeployTool == "helm" || config.DeployTool == "helm3" {
|
|
return runHelmDeploy(config, utils, stdout)
|
|
} else if config.DeployTool == "kubectl" {
|
|
return runKubectlDeploy(config, utils, stdout)
|
|
}
|
|
return fmt.Errorf("Failed to execute deployments")
|
|
}
|
|
|
|
func runHelmDeploy(config kubernetesDeployOptions, utils kubernetesDeployUtils, stdout io.Writer) error {
|
|
if len(config.ChartPath) <= 0 {
|
|
return fmt.Errorf("chart path has not been set, please configure chartPath parameter")
|
|
}
|
|
if len(config.DeploymentName) <= 0 {
|
|
return fmt.Errorf("deployment name has not been set, please configure deploymentName parameter")
|
|
}
|
|
_, containerRegistry, err := splitRegistryURL(config.ContainerRegistryURL)
|
|
if err != nil {
|
|
log.Entry().WithError(err).Fatalf("Container registry url '%v' incorrect", config.ContainerRegistryURL)
|
|
}
|
|
//support either image or containerImageName and containerImageTag
|
|
containerImageName := ""
|
|
containerImageTag := ""
|
|
|
|
if len(config.Image) > 0 {
|
|
containerImageName, containerImageTag, err = splitFullImageName(config.Image)
|
|
if err != nil {
|
|
log.Entry().WithError(err).Fatalf("Container image '%v' incorrect", config.Image)
|
|
}
|
|
} else if len(config.ContainerImageName) > 0 && len(config.ContainerImageTag) > 0 {
|
|
containerImageName = config.ContainerImageName
|
|
containerImageTag = config.ContainerImageTag
|
|
} else {
|
|
return fmt.Errorf("image information not given - please either set image or containerImageName and containerImageTag")
|
|
}
|
|
helmLogFields := map[string]interface{}{}
|
|
helmLogFields["Chart Path"] = config.ChartPath
|
|
helmLogFields["Namespace"] = config.Namespace
|
|
helmLogFields["Deployment Name"] = config.DeploymentName
|
|
helmLogFields["Context"] = config.KubeContext
|
|
helmLogFields["Kubeconfig"] = config.KubeConfig
|
|
log.Entry().WithFields(helmLogFields).Debug("Calling Helm")
|
|
|
|
helmEnv := []string{fmt.Sprintf("KUBECONFIG=%v", config.KubeConfig)}
|
|
if config.DeployTool == "helm" && len(config.TillerNamespace) > 0 {
|
|
helmEnv = append(helmEnv, fmt.Sprintf("TILLER_NAMESPACE=%v", config.TillerNamespace))
|
|
}
|
|
log.Entry().Debugf("Helm SetEnv: %v", helmEnv)
|
|
utils.SetEnv(helmEnv)
|
|
utils.Stdout(stdout)
|
|
|
|
if config.DeployTool == "helm" {
|
|
initParams := []string{"init", "--client-only"}
|
|
if err := utils.RunExecutable("helm", initParams...); err != nil {
|
|
log.Entry().WithError(err).Fatal("Helm init call failed")
|
|
}
|
|
}
|
|
|
|
var secretsData string
|
|
if len(config.ContainerRegistryUser) == 0 && len(config.ContainerRegistryPassword) == 0 {
|
|
log.Entry().Info("No/incomplete container registry credentials provided: skipping secret creation")
|
|
if len(config.ContainerRegistrySecret) > 0 {
|
|
secretsData = fmt.Sprintf(",imagePullSecrets[0].name=%v", config.ContainerRegistrySecret)
|
|
}
|
|
} else {
|
|
var dockerRegistrySecret bytes.Buffer
|
|
utils.Stdout(&dockerRegistrySecret)
|
|
err, kubeSecretParams := defineKubeSecretParams(config, containerRegistry, utils)
|
|
if err != nil {
|
|
log.Entry().WithError(err).Fatal("parameter definition for creating registry secret failed")
|
|
}
|
|
log.Entry().Infof("Calling kubectl create secret --dry-run=true ...")
|
|
log.Entry().Debugf("kubectl parameters %v", kubeSecretParams)
|
|
if err := utils.RunExecutable("kubectl", kubeSecretParams...); err != nil {
|
|
log.Entry().WithError(err).Fatal("Retrieving Docker config via kubectl failed")
|
|
}
|
|
|
|
var dockerRegistrySecretData struct {
|
|
Kind string `json:"kind"`
|
|
Data struct {
|
|
DockerConfJSON string `json:".dockerconfigjson"`
|
|
} `json:"data"`
|
|
Type string `json:"type"`
|
|
}
|
|
if err := json.Unmarshal(dockerRegistrySecret.Bytes(), &dockerRegistrySecretData); err != nil {
|
|
log.Entry().WithError(err).Fatal("Reading docker registry secret json failed")
|
|
}
|
|
// make sure that secret is hidden in log output
|
|
log.RegisterSecret(dockerRegistrySecretData.Data.DockerConfJSON)
|
|
|
|
log.Entry().Debugf("Secret created: %v", string(dockerRegistrySecret.Bytes()))
|
|
|
|
// pass secret in helm default template way and in Piper backward compatible way
|
|
secretsData = fmt.Sprintf(",secret.name=%v,secret.dockerconfigjson=%v,imagePullSecrets[0].name=%v", config.ContainerRegistrySecret, dockerRegistrySecretData.Data.DockerConfJSON, config.ContainerRegistrySecret)
|
|
}
|
|
|
|
// Deprecated functionality
|
|
// only for backward compatible handling of ingress.hosts
|
|
// this requires an adoption of the default ingress.yaml template
|
|
// Due to the way helm is implemented it is currently not possible to overwrite a part of a list:
|
|
// see: https://github.com/helm/helm/issues/5711#issuecomment-636177594
|
|
// Recommended way is to use a custom values file which contains the appropriate data
|
|
ingressHosts := ""
|
|
for i, h := range config.IngressHosts {
|
|
ingressHosts += fmt.Sprintf(",ingress.hosts[%v]=%v", i, h)
|
|
}
|
|
|
|
upgradeParams := []string{
|
|
"upgrade",
|
|
config.DeploymentName,
|
|
config.ChartPath,
|
|
}
|
|
|
|
for _, v := range config.HelmValues {
|
|
upgradeParams = append(upgradeParams, "--values", v)
|
|
}
|
|
|
|
upgradeParams = append(
|
|
upgradeParams,
|
|
"--install",
|
|
"--namespace", config.Namespace,
|
|
"--set",
|
|
fmt.Sprintf("image.repository=%v/%v,image.tag=%v%v%v", containerRegistry, containerImageName, containerImageTag, secretsData, ingressHosts),
|
|
)
|
|
|
|
if config.ForceUpdates {
|
|
upgradeParams = append(upgradeParams, "--force")
|
|
}
|
|
|
|
if config.DeployTool == "helm" {
|
|
upgradeParams = append(upgradeParams, "--wait", "--timeout", strconv.Itoa(config.HelmDeployWaitSeconds))
|
|
}
|
|
|
|
if config.DeployTool == "helm3" {
|
|
upgradeParams = append(upgradeParams, "--wait", "--timeout", fmt.Sprintf("%vs", config.HelmDeployWaitSeconds))
|
|
}
|
|
|
|
if !config.KeepFailedDeployments {
|
|
upgradeParams = append(upgradeParams, "--atomic")
|
|
}
|
|
|
|
if len(config.KubeContext) > 0 {
|
|
upgradeParams = append(upgradeParams, "--kube-context", config.KubeContext)
|
|
}
|
|
|
|
if len(config.AdditionalParameters) > 0 {
|
|
upgradeParams = append(upgradeParams, config.AdditionalParameters...)
|
|
}
|
|
|
|
utils.Stdout(stdout)
|
|
log.Entry().Info("Calling helm upgrade ...")
|
|
log.Entry().Debugf("Helm parameters %v", upgradeParams)
|
|
if err := utils.RunExecutable("helm", upgradeParams...); err != nil {
|
|
log.Entry().WithError(err).Fatal("Helm upgrade call failed")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func runKubectlDeploy(config kubernetesDeployOptions, utils kubernetesDeployUtils, stdout io.Writer) error {
|
|
_, containerRegistry, err := splitRegistryURL(config.ContainerRegistryURL)
|
|
if err != nil {
|
|
log.Entry().WithError(err).Fatalf("Container registry url '%v' incorrect", config.ContainerRegistryURL)
|
|
}
|
|
|
|
kubeParams := []string{
|
|
"--insecure-skip-tls-verify=true",
|
|
fmt.Sprintf("--namespace=%v", config.Namespace),
|
|
}
|
|
|
|
if len(config.KubeConfig) > 0 {
|
|
log.Entry().Info("Using KUBECONFIG environment for authentication.")
|
|
kubeEnv := []string{fmt.Sprintf("KUBECONFIG=%v", config.KubeConfig)}
|
|
utils.SetEnv(kubeEnv)
|
|
if len(config.KubeContext) > 0 {
|
|
kubeParams = append(kubeParams, fmt.Sprintf("--context=%v", config.KubeContext))
|
|
}
|
|
|
|
} else {
|
|
log.Entry().Info("Using --token parameter for authentication.")
|
|
kubeParams = append(kubeParams, fmt.Sprintf("--server=%v", config.APIServer))
|
|
kubeParams = append(kubeParams, fmt.Sprintf("--token=%v", config.KubeToken))
|
|
}
|
|
|
|
utils.Stdout(stdout)
|
|
|
|
if len(config.ContainerRegistryUser) == 0 && len(config.ContainerRegistryPassword) == 0 {
|
|
log.Entry().Info("No/incomplete container registry credentials provided: skipping secret creation")
|
|
} else {
|
|
err, kubeSecretParams := defineKubeSecretParams(config, containerRegistry, utils)
|
|
if err != nil {
|
|
log.Entry().WithError(err).Fatal("parameter definition for creating registry secret failed")
|
|
}
|
|
var dockerRegistrySecret bytes.Buffer
|
|
utils.Stdout(&dockerRegistrySecret)
|
|
log.Entry().Infof("Creating container registry secret '%v'", config.ContainerRegistrySecret)
|
|
kubeSecretParams = append(kubeSecretParams, kubeParams...)
|
|
log.Entry().Debugf("Running kubectl with following parameters: %v", kubeSecretParams)
|
|
if err := utils.RunExecutable("kubectl", kubeSecretParams...); err != nil {
|
|
log.Entry().WithError(err).Fatal("Creating container registry secret failed")
|
|
}
|
|
|
|
var dockerRegistrySecretData map[string]interface{}
|
|
|
|
if err := json.Unmarshal(dockerRegistrySecret.Bytes(), &dockerRegistrySecretData); err != nil {
|
|
log.Entry().WithError(err).Fatal("Reading docker registry secret json failed")
|
|
}
|
|
|
|
// write the json output to a file
|
|
tmpFolder := getTempDirForKubeCtlJson()
|
|
defer os.RemoveAll(tmpFolder) // clean up
|
|
jsonData, _ := json.Marshal(dockerRegistrySecretData)
|
|
ioutil.WriteFile(filepath.Join(tmpFolder, "secret.json"), jsonData, 0777)
|
|
|
|
kubeSecretApplyParams := []string{"apply", "-f", filepath.Join(tmpFolder, "secret.json")}
|
|
if err := utils.RunExecutable("kubectl", kubeSecretApplyParams...); err != nil {
|
|
log.Entry().WithError(err).Fatal("Creating container registry secret failed")
|
|
}
|
|
|
|
}
|
|
|
|
appTemplate, err := utils.FileRead(config.AppTemplate)
|
|
if err != nil {
|
|
log.Entry().WithError(err).Fatalf("Error when reading appTemplate '%v'", config.AppTemplate)
|
|
}
|
|
|
|
//support either image or containerImageName and containerImageTag
|
|
fullImage := ""
|
|
|
|
if len(config.Image) > 0 {
|
|
fullImage = config.Image
|
|
} else if len(config.ContainerImageName) > 0 && len(config.ContainerImageTag) > 0 {
|
|
fullImage = config.ContainerImageName + ":" + config.ContainerImageTag
|
|
} else {
|
|
return fmt.Errorf("image information not given - please either set image or containerImageName and containerImageTag")
|
|
}
|
|
|
|
// Update image name in deployment yaml, expects placeholder like 'image: <image-name>'
|
|
re := regexp.MustCompile(`image:[ ]*<image-name>`)
|
|
appTemplate = []byte(re.ReplaceAllString(string(appTemplate), fmt.Sprintf("image: %v/%v", containerRegistry, fullImage)))
|
|
|
|
err = utils.FileWrite(config.AppTemplate, appTemplate, 0700)
|
|
if err != nil {
|
|
log.Entry().WithError(err).Fatalf("Error when updating appTemplate '%v'", config.AppTemplate)
|
|
}
|
|
|
|
kubeParams = append(kubeParams, config.DeployCommand, "--filename", config.AppTemplate)
|
|
if config.ForceUpdates == true && config.DeployCommand == "replace" {
|
|
kubeParams = append(kubeParams, "--force")
|
|
}
|
|
|
|
if len(config.AdditionalParameters) > 0 {
|
|
kubeParams = append(kubeParams, config.AdditionalParameters...)
|
|
}
|
|
if err := utils.RunExecutable("kubectl", kubeParams...); err != nil {
|
|
log.Entry().Debugf("Running kubectl with following parameters: %v", kubeParams)
|
|
log.Entry().WithError(err).Fatal("Deployment with kubectl failed.")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func getTempDirForKubeCtlJson() string {
|
|
tmpFolder, err := ioutil.TempDir(".", "temp-")
|
|
if err != nil {
|
|
log.Entry().WithError(err).WithField("path", tmpFolder).Debug("creating temp directory failed")
|
|
}
|
|
return tmpFolder
|
|
}
|
|
|
|
func splitRegistryURL(registryURL string) (protocol, registry string, err error) {
|
|
parts := strings.Split(registryURL, "://")
|
|
if len(parts) != 2 || len(parts[1]) == 0 {
|
|
return "", "", fmt.Errorf("Failed to split registry url '%v'", registryURL)
|
|
}
|
|
return parts[0], parts[1], nil
|
|
}
|
|
|
|
func splitFullImageName(image string) (imageName, tag string, err error) {
|
|
parts := strings.Split(image, ":")
|
|
switch len(parts) {
|
|
case 0:
|
|
return "", "", fmt.Errorf("Failed to split image name '%v'", image)
|
|
case 1:
|
|
if len(parts[0]) > 0 {
|
|
return parts[0], "", nil
|
|
}
|
|
return "", "", fmt.Errorf("Failed to split image name '%v'", image)
|
|
case 2:
|
|
return parts[0], parts[1], nil
|
|
}
|
|
return "", "", fmt.Errorf("Failed to split image name '%v'", image)
|
|
}
|
|
|
|
func defineKubeSecretParams(config kubernetesDeployOptions, containerRegistry string, utils kubernetesDeployUtils) (error, []string) {
|
|
targetPath := ""
|
|
if len(config.DockerConfigJSON) > 0 {
|
|
// first enhance config.json with additional pipeline-related credentials if they have been provided
|
|
if len(containerRegistry) > 0 && len(config.ContainerRegistryUser) > 0 && len(config.ContainerRegistryPassword) > 0 {
|
|
var err error
|
|
targetPath, err = docker.CreateDockerConfigJSON(containerRegistry, config.ContainerRegistryUser, config.ContainerRegistryPassword, "", config.DockerConfigJSON, utils)
|
|
if err != nil {
|
|
log.Entry().Warningf("failed to update Docker config.json: %v", err)
|
|
return err, []string{}
|
|
}
|
|
}
|
|
|
|
} else {
|
|
return fmt.Errorf("no docker config json file found to update credentials '%v'", config.DockerConfigJSON), []string{}
|
|
}
|
|
return nil, []string{
|
|
"create",
|
|
"secret",
|
|
"generic",
|
|
config.ContainerRegistrySecret,
|
|
fmt.Sprintf("--from-file=.dockerconfigjson=%v", targetPath),
|
|
"--type=kubernetes.io/dockerconfigjson",
|
|
"--insecure-skip-tls-verify=true",
|
|
"--dry-run=client",
|
|
"--output=json",
|
|
}
|
|
}
|