mirror of
https://github.com/coreos/prometheus-operator.git
synced 2026-02-06 00:47:16 +01:00
* Refactor the common implementation code (not including tests) between Prometheus's modes
76 lines
2.4 KiB
Go
76 lines
2.4 KiB
Go
// Copyright 2020 The prometheus-operator 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 operator
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
ref "github.com/distribution/reference"
|
|
)
|
|
|
|
// BuildImagePath builds a container image path based on
|
|
// the given parameters.
|
|
// Return specImage if not empty.
|
|
// If image contains a tag or digest then image will be returned.
|
|
// Otherwise, return image suffixed by either SHA, tag or version(in that order).
|
|
// Inspired by kubernetes code handling of image building.
|
|
func BuildImagePath(specImage, baseImage, version, tag, sha string) (string, error) {
|
|
if strings.TrimSpace(specImage) != "" {
|
|
return specImage, nil
|
|
}
|
|
named, err := ref.ParseNormalizedNamed(baseImage)
|
|
if err != nil {
|
|
return "", fmt.Errorf("couldn't parse image reference %q: %v", baseImage, err)
|
|
}
|
|
_, isTagged := named.(ref.Tagged)
|
|
_, isDigested := named.(ref.Digested)
|
|
if isTagged || isDigested {
|
|
return baseImage, nil
|
|
}
|
|
|
|
if sha != "" {
|
|
return fmt.Sprintf("%s@sha256:%s", baseImage, sha), nil
|
|
} else if tag != "" {
|
|
imageTag, err := ref.WithTag(named, tag)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
return imageTag.String(), nil
|
|
}
|
|
if version == "" {
|
|
return "", fmt.Errorf("couldn't generate an image reference since version is empty")
|
|
}
|
|
return baseImage + ":" + version, nil
|
|
}
|
|
|
|
// BuildImagePathForAgent builds a container image path based on
|
|
// the given parameters for Prometheus Agent.
|
|
// Return specImage if not empty.
|
|
// Otherwise a combination of baseImage and version.
|
|
func BuildImagePathForAgent(specImage, baseImage, version string) (string, error) {
|
|
return BuildImagePath(specImage, baseImage, version, "", "")
|
|
}
|
|
|
|
// StringValOrDefault returns the default val if the
|
|
// given string is empty/whitespace.
|
|
// Otherwise returns the value of the string..
|
|
func StringValOrDefault(val, defaultVal string) string {
|
|
if strings.TrimSpace(val) == "" {
|
|
return defaultVal
|
|
}
|
|
return val
|
|
}
|