2019-05-31 09:45:11 +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 .
* /
package image
import (
"fmt"
"io/ioutil"
"os"
2020-01-14 10:38:55 +00:00
"strings"
2019-05-31 09:45:11 +00:00
yaml "gopkg.in/yaml.v2"
)
// RegistryList holds public and private image registries
type RegistryList struct {
2020-01-14 10:38:55 +00:00
GcAuthenticatedRegistry string ` yaml:"gcAuthenticatedRegistry" `
DockerLibraryRegistry string ` yaml:"dockerLibraryRegistry" `
DockerGluster string ` yaml:"dockerGluster" `
E2eRegistry string ` yaml:"e2eRegistry" `
2020-12-17 12:28:29 +00:00
E2eVolumeRegistry string ` yaml:"e2eVolumeRegistry" `
2020-04-14 07:04:33 +00:00
PromoterE2eRegistry string ` yaml:"promoterE2eRegistry" `
2020-12-17 12:28:29 +00:00
BuildImageRegistry string ` yaml:"buildImageRegistry" `
2020-01-14 10:38:55 +00:00
InvalidRegistry string ` yaml:"invalidRegistry" `
GcRegistry string ` yaml:"gcRegistry" `
2020-12-17 12:28:29 +00:00
SigStorageRegistry string ` yaml:"sigStorageRegistry" `
2020-01-14 10:38:55 +00:00
GcrReleaseRegistry string ` yaml:"gcrReleaseRegistry" `
PrivateRegistry string ` yaml:"privateRegistry" `
SampleRegistry string ` yaml:"sampleRegistry" `
2019-05-31 09:45:11 +00:00
}
// Config holds an images registry, name, and version
type Config struct {
registry string
name string
version string
}
// SetRegistry sets an image registry in a Config struct
func ( i * Config ) SetRegistry ( registry string ) {
i . registry = registry
}
// SetName sets an image name in a Config struct
func ( i * Config ) SetName ( name string ) {
i . name = name
}
// SetVersion sets an image version in a Config struct
func ( i * Config ) SetVersion ( version string ) {
i . version = version
}
func initReg ( ) RegistryList {
registry := RegistryList {
2020-01-14 10:38:55 +00:00
GcAuthenticatedRegistry : "gcr.io/authenticated-image-pulling" ,
DockerLibraryRegistry : "docker.io/library" ,
DockerGluster : "docker.io/gluster" ,
E2eRegistry : "gcr.io/kubernetes-e2e-test-images" ,
2020-12-17 12:28:29 +00:00
E2eVolumeRegistry : "gcr.io/kubernetes-e2e-test-images/volume" ,
PromoterE2eRegistry : "k8s.gcr.io/e2e-test-images" ,
BuildImageRegistry : "k8s.gcr.io/build-image" ,
2020-01-14 10:38:55 +00:00
InvalidRegistry : "invalid.com/invalid" ,
GcRegistry : "k8s.gcr.io" ,
2020-12-17 12:28:29 +00:00
SigStorageRegistry : "k8s.gcr.io/sig-storage" ,
2020-01-14 10:38:55 +00:00
GcrReleaseRegistry : "gcr.io/gke-release" ,
PrivateRegistry : "gcr.io/k8s-authenticated-test" ,
SampleRegistry : "gcr.io/google-samples" ,
2019-05-31 09:45:11 +00:00
}
repoList := os . Getenv ( "KUBE_TEST_REPO_LIST" )
if repoList == "" {
return registry
}
fileContent , err := ioutil . ReadFile ( repoList )
if err != nil {
panic ( fmt . Errorf ( "Error reading '%v' file contents: %v" , repoList , err ) )
}
err = yaml . Unmarshal ( fileContent , & registry )
if err != nil {
panic ( fmt . Errorf ( "Error unmarshalling '%v' YAML file: %v" , repoList , err ) )
}
return registry
}
var (
2020-01-14 10:38:55 +00:00
registry = initReg ( )
dockerLibraryRegistry = registry . DockerLibraryRegistry
dockerGluster = registry . DockerGluster
e2eRegistry = registry . E2eRegistry
2020-12-17 12:28:29 +00:00
e2eVolumeRegistry = registry . E2eVolumeRegistry
2020-04-14 07:04:33 +00:00
promoterE2eRegistry = registry . PromoterE2eRegistry
2020-12-17 12:28:29 +00:00
buildImageRegistry = registry . BuildImageRegistry
2020-01-14 10:38:55 +00:00
gcAuthenticatedRegistry = registry . GcAuthenticatedRegistry
gcRegistry = registry . GcRegistry
2020-12-17 12:28:29 +00:00
sigStorageRegistry = registry . SigStorageRegistry
2020-01-14 10:38:55 +00:00
gcrReleaseRegistry = registry . GcrReleaseRegistry
invalidRegistry = registry . InvalidRegistry
2019-05-31 09:45:11 +00:00
// PrivateRegistry is an image repository that requires authentication
PrivateRegistry = registry . PrivateRegistry
sampleRegistry = registry . SampleRegistry
// Preconfigured image configs
imageConfigs = initImageConfigs ( )
)
const (
2020-12-17 12:28:29 +00:00
// None is to be used for unset/default images
None = iota
2019-06-24 09:08:09 +00:00
// Agnhost image
2020-12-17 12:28:29 +00:00
Agnhost
2020-01-14 10:38:55 +00:00
// AgnhostPrivate image
AgnhostPrivate
2019-05-31 09:45:11 +00:00
// APIServer image
APIServer
// AppArmorLoader image
AppArmorLoader
2020-01-14 10:38:55 +00:00
// AuthenticatedAlpine image
AuthenticatedAlpine
// AuthenticatedWindowsNanoServer image
AuthenticatedWindowsNanoServer
2019-05-31 09:45:11 +00:00
// BusyBox image
BusyBox
// CheckMetadataConcealment image
CheckMetadataConcealment
// CudaVectorAdd image
CudaVectorAdd
// CudaVectorAdd2 image
CudaVectorAdd2
2020-12-17 12:28:29 +00:00
// DebianIptables Image
DebianIptables
2019-05-31 09:45:11 +00:00
// EchoServer image
EchoServer
// Etcd image
Etcd
2020-01-14 10:38:55 +00:00
// GlusterDynamicProvisioner image
GlusterDynamicProvisioner
// Httpd image
Httpd
// HttpdNew image
HttpdNew
// InvalidRegistryImage image
InvalidRegistryImage
2019-05-31 09:45:11 +00:00
// IpcUtils image
IpcUtils
// JessieDnsutils image
JessieDnsutils
// Kitten image
Kitten
// Nautilus image
Nautilus
2020-01-14 10:38:55 +00:00
// NFSProvisioner image
NFSProvisioner
2019-05-31 09:45:11 +00:00
// Nginx image
Nginx
// NginxNew image
NginxNew
// Nonewprivs image
Nonewprivs
2019-06-24 09:08:09 +00:00
// NonRoot runs with a default user of 1234
NonRoot
2019-05-31 09:45:11 +00:00
// Pause - when these values are updated, also update cmd/kubelet/app/options/container_runtime.go
// Pause image
Pause
2019-06-24 09:08:09 +00:00
// Perl image
Perl
2020-01-14 10:38:55 +00:00
// PrometheusDummyExporter image
PrometheusDummyExporter
// PrometheusToSd image
PrometheusToSd
2019-05-31 09:45:11 +00:00
// Redis image
Redis
2020-01-14 10:38:55 +00:00
// RegressionIssue74839 image
RegressionIssue74839
2019-05-31 09:45:11 +00:00
// ResourceConsumer image
ResourceConsumer
2020-01-14 10:38:55 +00:00
// SdDummyExporter image
SdDummyExporter
2019-05-31 09:45:11 +00:00
// VolumeNFSServer image
VolumeNFSServer
// VolumeISCSIServer image
VolumeISCSIServer
// VolumeGlusterServer image
VolumeGlusterServer
// VolumeRBDServer image
VolumeRBDServer
)
func initImageConfigs ( ) map [ int ] Config {
configs := map [ int ] Config { }
2020-12-17 12:28:29 +00:00
configs [ Agnhost ] = Config { promoterE2eRegistry , "agnhost" , "2.21" }
2020-01-14 10:38:55 +00:00
configs [ AgnhostPrivate ] = Config { PrivateRegistry , "agnhost" , "2.6" }
configs [ AuthenticatedAlpine ] = Config { gcAuthenticatedRegistry , "alpine" , "3.7" }
configs [ AuthenticatedWindowsNanoServer ] = Config { gcAuthenticatedRegistry , "windows-nanoserver" , "v1" }
2020-04-14 07:04:33 +00:00
configs [ APIServer ] = Config { e2eRegistry , "sample-apiserver" , "1.17" }
2019-05-31 09:45:11 +00:00
configs [ AppArmorLoader ] = Config { e2eRegistry , "apparmor-loader" , "1.0" }
configs [ BusyBox ] = Config { dockerLibraryRegistry , "busybox" , "1.29" }
configs [ CheckMetadataConcealment ] = Config { e2eRegistry , "metadata-concealment" , "1.2" }
configs [ CudaVectorAdd ] = Config { e2eRegistry , "cuda-vector-add" , "1.0" }
configs [ CudaVectorAdd2 ] = Config { e2eRegistry , "cuda-vector-add" , "2.0" }
2020-12-17 12:28:29 +00:00
configs [ DebianIptables ] = Config { buildImageRegistry , "debian-iptables" , "buster-v1.3.0" }
2019-05-31 09:45:11 +00:00
configs [ EchoServer ] = Config { e2eRegistry , "echoserver" , "2.2" }
2020-12-17 12:28:29 +00:00
configs [ Etcd ] = Config { gcRegistry , "etcd" , "3.4.13-0" }
2020-01-14 10:38:55 +00:00
configs [ GlusterDynamicProvisioner ] = Config { dockerGluster , "glusterdynamic-provisioner" , "v1.0" }
configs [ Httpd ] = Config { dockerLibraryRegistry , "httpd" , "2.4.38-alpine" }
configs [ HttpdNew ] = Config { dockerLibraryRegistry , "httpd" , "2.4.39-alpine" }
configs [ InvalidRegistryImage ] = Config { invalidRegistry , "alpine" , "3.1" }
2019-05-31 09:45:11 +00:00
configs [ IpcUtils ] = Config { e2eRegistry , "ipc-utils" , "1.0" }
configs [ JessieDnsutils ] = Config { e2eRegistry , "jessie-dnsutils" , "1.0" }
configs [ Kitten ] = Config { e2eRegistry , "kitten" , "1.0" }
configs [ Nautilus ] = Config { e2eRegistry , "nautilus" , "1.0" }
2020-12-17 12:28:29 +00:00
configs [ NFSProvisioner ] = Config { sigStorageRegistry , "nfs-provisioner" , "v2.2.2" }
2019-05-31 09:45:11 +00:00
configs [ Nginx ] = Config { dockerLibraryRegistry , "nginx" , "1.14-alpine" }
configs [ NginxNew ] = Config { dockerLibraryRegistry , "nginx" , "1.15-alpine" }
configs [ Nonewprivs ] = Config { e2eRegistry , "nonewprivs" , "1.0" }
2019-06-24 09:08:09 +00:00
configs [ NonRoot ] = Config { e2eRegistry , "nonroot" , "1.0" }
2019-05-31 09:45:11 +00:00
// Pause - when these values are updated, also update cmd/kubelet/app/options/container_runtime.go
2020-04-14 07:04:33 +00:00
configs [ Pause ] = Config { gcRegistry , "pause" , "3.2" }
2019-06-24 09:08:09 +00:00
configs [ Perl ] = Config { dockerLibraryRegistry , "perl" , "5.26" }
2020-01-14 10:38:55 +00:00
configs [ PrometheusDummyExporter ] = Config { gcRegistry , "prometheus-dummy-exporter" , "v0.1.0" }
configs [ PrometheusToSd ] = Config { gcRegistry , "prometheus-to-sd" , "v0.5.0" }
configs [ Redis ] = Config { dockerLibraryRegistry , "redis" , "5.0.5-alpine" }
configs [ RegressionIssue74839 ] = Config { e2eRegistry , "regression-issue-74839-amd64" , "1.0" }
2019-05-31 09:45:11 +00:00
configs [ ResourceConsumer ] = Config { e2eRegistry , "resource-consumer" , "1.5" }
2020-01-14 10:38:55 +00:00
configs [ SdDummyExporter ] = Config { gcRegistry , "sd-dummy-exporter" , "v0.2.0" }
2020-12-17 12:28:29 +00:00
configs [ VolumeNFSServer ] = Config { e2eVolumeRegistry , "nfs" , "1.0" }
configs [ VolumeISCSIServer ] = Config { e2eVolumeRegistry , "iscsi" , "2.0" }
configs [ VolumeGlusterServer ] = Config { e2eVolumeRegistry , "gluster" , "1.0" }
configs [ VolumeRBDServer ] = Config { e2eVolumeRegistry , "rbd" , "1.0.1" }
2019-05-31 09:45:11 +00:00
return configs
}
// GetImageConfigs returns the map of imageConfigs
func GetImageConfigs ( ) map [ int ] Config {
return imageConfigs
}
// GetConfig returns the Config object for an image
func GetConfig ( image int ) Config {
return imageConfigs [ image ]
}
// GetE2EImage returns the fully qualified URI to an image (including version)
func GetE2EImage ( image int ) string {
return fmt . Sprintf ( "%s/%s:%s" , imageConfigs [ image ] . registry , imageConfigs [ image ] . name , imageConfigs [ image ] . version )
}
// GetE2EImage returns the fully qualified URI to an image (including version)
func ( i * Config ) GetE2EImage ( ) string {
return fmt . Sprintf ( "%s/%s:%s" , i . registry , i . name , i . version )
}
// GetPauseImageName returns the pause image name with proper version
func GetPauseImageName ( ) string {
return GetE2EImage ( Pause )
}
2020-01-14 10:38:55 +00:00
// ReplaceRegistryInImageURL replaces the registry in the image URL with a custom one
func ReplaceRegistryInImageURL ( imageURL string ) ( string , error ) {
parts := strings . Split ( imageURL , "/" )
countParts := len ( parts )
registryAndUser := strings . Join ( parts [ : countParts - 1 ] , "/" )
switch registryAndUser {
case "gcr.io/kubernetes-e2e-test-images" :
registryAndUser = e2eRegistry
2020-12-17 12:28:29 +00:00
case "gcr.io/kubernetes-e2e-test-images/volume" :
registryAndUser = e2eVolumeRegistry
2020-01-14 10:38:55 +00:00
case "k8s.gcr.io" :
registryAndUser = gcRegistry
2020-12-17 12:28:29 +00:00
case "k8s.gcr.io/sig-storage" :
registryAndUser = sigStorageRegistry
2020-01-14 10:38:55 +00:00
case "gcr.io/k8s-authenticated-test" :
registryAndUser = PrivateRegistry
case "gcr.io/google-samples" :
registryAndUser = sampleRegistry
case "gcr.io/gke-release" :
registryAndUser = gcrReleaseRegistry
case "docker.io/library" :
registryAndUser = dockerLibraryRegistry
default :
if countParts == 1 {
// We assume we found an image from docker hub library
// e.g. openjdk -> docker.io/library/openjdk
registryAndUser = dockerLibraryRegistry
break
}
return "" , fmt . Errorf ( "Registry: %s is missing in test/utils/image/manifest.go, please add the registry, otherwise the test will fail on air-gapped clusters" , registryAndUser )
}
return fmt . Sprintf ( "%s/%s" , registryAndUser , parts [ countParts - 1 ] ) , nil
}