Documentation
¶
Index ¶
Constants ¶
View Source
const ( AzLinux3TargetKey = "azlinux3" // Azlinux3Ref is the image ref used for the base worker image Azlinux3Ref = "mcr.microsoft.com/azurelinux/base/core:3.0" AzLinux3FullName = "Azure Linux 3" // Azlinux3WorkerContextName is the build context name that can be used to lookup Azlinux3WorkerContextName = "dalec-azlinux3-worker" )
View Source
const ( AzLinux4TargetKey = "azlinux4" // Azlinux4Ref is the image ref used for the base worker image. // // TODO(azl4): Azure Linux 4 is currently published under the beta // channel. This location will change when it reaches general // availability. Azlinux4Ref = "mcr.microsoft.com/azurelinux-beta/base/core:4.0" AzLinux4FullName = "Azure Linux 4" // Azlinux4WorkerContextName is the build context name that can be used to // override the base worker image. Azlinux4WorkerContextName = "dalec-azlinux4-worker" )
Variables ¶
View Source
var Azlinux3Config = &distro.Config{ ImageRef: Azlinux3Ref, ContextRef: Azlinux3WorkerContextName, CacheName: tdnfCacheNameAzlinux3, CacheDir: []string{"/var/cache/tdnf", "/var/cache/dnf"}, CacheAddPlatform: true, ReleaseVer: "3.0", BuilderPackages: azlinux3BuilderPackages, BasePackages: azlinux3BasePackages(), RepoPlatformConfig: &defaultAzlinuxRepoPlatform, InstallFunc: distro.TdnfInstall, SysextSupported: true, FullName: AzLinux3FullName, }
View Source
var Azlinux4Config = &distro.Config{ ImageRef: Azlinux4Ref, ContextRef: Azlinux4WorkerContextName, CacheName: dnfCacheNameAzlinux4, CacheDir: []string{"/var/cache/libdnf5"}, CacheAddPlatform: true, ReleaseVer: "4.0", BuilderPackages: azlinux4BuilderPackages, BasePackages: azlinux4BasePackages(), RepoPlatformConfig: &defaultAzlinuxRepoPlatform, InstallFunc: distro.DnfInstall, SysextSupported: true, FullName: AzLinux4FullName, }
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.