resources

package
v0.4.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 13, 2020 License: Apache-2.0 Imports: 14 Imported by: 0

Documentation

Overview

Package resources contains Kubernetes resources required by Jenkins

Index

Constants

View Source
const (
	// OperatorUserName defines username for Jenkins API calls
	OperatorUserName = "jenkins-operator"
	// OperatorCredentialsSecretUserNameKey defines key of username in operator credentials secret
	OperatorCredentialsSecretUserNameKey = "user"
	// OperatorCredentialsSecretPasswordKey defines key of password in operator credentials secret
	OperatorCredentialsSecretPasswordKey = "password"
	// OperatorCredentialsSecretTokenKey defines key of token in operator credentials secret
	OperatorCredentialsSecretTokenKey = "token"
	// OperatorCredentialsSecretTokenCreationKey defines key of token creation time in operator credentials secret
	OperatorCredentialsSecretTokenCreationKey = "tokenCreationTime"
)
View Source
const (
	// JenkinsMasterContainerName is the Jenkins master container name in pod
	JenkinsMasterContainerName = "jenkins-master"
	// JenkinsHomeVolumeName is the Jenkins home volume name
	JenkinsHomeVolumeName = "jenkins-home"

	// JenkinsScriptsVolumePath is a path where are scripts used to configure Jenkins
	JenkinsScriptsVolumePath = jenkinsPath + "/scripts"
	// InitScriptName is the init script name which configures init.groovy.d, scripts and install plugins
	InitScriptName = "init.sh"

	// GroovyScriptsSecretVolumePath is a path where are groovy scripts used to configure Jenkins
	// This script is provided by user
	GroovyScriptsSecretVolumePath = jenkinsPath + "/groovy-scripts-secrets"
	// ConfigurationAsCodeSecretVolumePath is a path where are CasC configs used to configure Jenkins
	// This script is provided by user
	ConfigurationAsCodeSecretVolumePath = jenkinsPath + "/configuration-as-code-secrets"
)

Variables

This section is empty.

Functions

func BuildLabelsForWatchedResources added in v0.0.4

func BuildLabelsForWatchedResources(jenkins v1alpha2.Jenkins) map[string]string

BuildLabelsForWatchedResources returns labels for Kubernetes resources which operator want to watch resources with that labels should not be deleted after Jenkins CR deletion, to prevent this situation don't set any owner

func BuildResourceLabels

func BuildResourceLabels(jenkins *v1alpha2.Jenkins) map[string]string

BuildResourceLabels returns labels for all Kubernetes resources created by operator

func ConvertJenkinsContainerToKubernetesContainer added in v0.0.10

func ConvertJenkinsContainerToKubernetesContainer(container v1alpha2.Container) corev1.Container

ConvertJenkinsContainerToKubernetesContainer converts Jenkins container to Kubernetes container

func GetBaseConfigurationConfigMapName

func GetBaseConfigurationConfigMapName(jenkins *v1alpha2.Jenkins) string

GetBaseConfigurationConfigMapName returns name of Kubernetes config map used to base configuration

func GetInitConfigurationConfigMapName

func GetInitConfigurationConfigMapName(jenkins *v1alpha2.Jenkins) string

GetInitConfigurationConfigMapName returns name of Kubernetes config map used to init configuration

func GetJenkinsHTTPServiceFQDN added in v0.4.0

func GetJenkinsHTTPServiceFQDN(jenkins *v1alpha2.Jenkins) (string, error)

GetJenkinsHTTPServiceFQDN returns Kubernetes service FQDN used for expose Jenkins HTTP endpoint

func GetJenkinsHTTPServiceName added in v0.0.7

func GetJenkinsHTTPServiceName(jenkins *v1alpha2.Jenkins) string

GetJenkinsHTTPServiceName returns Kubernetes service name used for expose Jenkins HTTP endpoint

func GetJenkinsMasterContainerBaseCommand added in v0.1.1

func GetJenkinsMasterContainerBaseCommand() []string

GetJenkinsMasterContainerBaseCommand returns default Jenkins master container command

func GetJenkinsMasterContainerBaseEnvs added in v0.1.1

func GetJenkinsMasterContainerBaseEnvs(jenkins *v1alpha2.Jenkins) []corev1.EnvVar

GetJenkinsMasterContainerBaseEnvs returns Jenkins master pod envs required by operator

func GetJenkinsMasterContainerBaseVolumeMounts added in v0.0.10

func GetJenkinsMasterContainerBaseVolumeMounts(jenkins *v1alpha2.Jenkins) []corev1.VolumeMount

GetJenkinsMasterContainerBaseVolumeMounts returns Jenkins master pod volume mounts required by operator

func GetJenkinsMasterPodBaseVolumes added in v0.0.10

func GetJenkinsMasterPodBaseVolumes(jenkins *v1alpha2.Jenkins) []corev1.Volume

GetJenkinsMasterPodBaseVolumes returns Jenkins master pod volumes required by operator

func GetJenkinsMasterPodLabels added in v0.3.3

func GetJenkinsMasterPodLabels(jenkins v1alpha2.Jenkins) map[string]string

GetJenkinsMasterPodLabels returns Jenkins pod labels for given CR

func GetJenkinsMasterPodName added in v0.1.0

func GetJenkinsMasterPodName(jenkins v1alpha2.Jenkins) string

GetJenkinsMasterPodName returns Jenkins pod name for given CR

func GetJenkinsSlavesServiceFQDN added in v0.4.0

func GetJenkinsSlavesServiceFQDN(jenkins *v1alpha2.Jenkins) (string, error)

GetJenkinsSlavesServiceFQDN returns Kubernetes service FQDN used for expose Jenkins slave endpoint

func GetJenkinsSlavesServiceName added in v0.0.7

func GetJenkinsSlavesServiceName(jenkins *v1alpha2.Jenkins) string

GetJenkinsSlavesServiceName returns Kubernetes service name used for expose Jenkins slave endpoint

func GetOperatorCredentialsSecretName

func GetOperatorCredentialsSecretName(jenkins *v1alpha2.Jenkins) string

GetOperatorCredentialsSecretName returns name of Kubernetes secret used to store jenkins operator credentials to allow calls to Jenkins API

func GetResourceName

func GetResourceName(jenkins *v1alpha2.Jenkins) string

GetResourceName returns name of Kubernetes resource base on Jenkins CR

func NewBaseConfigurationConfigMap

func NewBaseConfigurationConfigMap(meta metav1.ObjectMeta, jenkins *v1alpha2.Jenkins) (*corev1.ConfigMap, error)

NewBaseConfigurationConfigMap builds Kubernetes config map used to base configuration

func NewInitConfigurationConfigMap

func NewInitConfigurationConfigMap(meta metav1.ObjectMeta, jenkins *v1alpha2.Jenkins) (*corev1.ConfigMap, error)

NewInitConfigurationConfigMap builds Kubernetes config map used to init configuration

func NewJenkinsMasterContainer added in v0.0.10

func NewJenkinsMasterContainer(jenkins *v1alpha2.Jenkins) corev1.Container

NewJenkinsMasterContainer returns Jenkins master Kubernetes container

func NewJenkinsMasterPod

func NewJenkinsMasterPod(objectMeta metav1.ObjectMeta, jenkins *v1alpha2.Jenkins) *corev1.Pod

NewJenkinsMasterPod builds Jenkins Master Kubernetes Pod resource

func NewOperatorCredentialsSecret

func NewOperatorCredentialsSecret(meta metav1.ObjectMeta, jenkins *v1alpha2.Jenkins) *corev1.Secret

NewOperatorCredentialsSecret builds the Kubernetes secret used to store jenkins operator credentials to allow calls to Jenkins API

func NewResourceObjectMeta

func NewResourceObjectMeta(jenkins *v1alpha2.Jenkins) metav1.ObjectMeta

NewResourceObjectMeta builds ObjectMeta for all Kubernetes resources created by operator

func NewRole

func NewRole(meta metav1.ObjectMeta) *v1.Role

NewRole returns rbac role for jenkins master

func NewRoleBinding

func NewRoleBinding(name, namespace, serviceAccountName string, roleRef v1.RoleRef) *v1.RoleBinding

NewRoleBinding returns rbac role binding for jenkins master

func NewScriptsConfigMap

func NewScriptsConfigMap(meta metav1.ObjectMeta, jenkins *v1alpha2.Jenkins) (*corev1.ConfigMap, error)

NewScriptsConfigMap builds Kubernetes config map used to store scripts

func NewServiceAccount

func NewServiceAccount(meta metav1.ObjectMeta, annotations map[string]string) *v1.ServiceAccount

NewServiceAccount return Kubernetes service account

func UpdateService added in v0.0.7

func UpdateService(actual corev1.Service, config v1alpha2.Service) corev1.Service

UpdateService returns new service with override fields from config

func VerifyIfLabelsAreSet added in v0.0.8

func VerifyIfLabelsAreSet(object metav1.Object, requiredLabels map[string]string) bool

VerifyIfLabelsAreSet check is selected labels are set for specific resource

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL