woodpecker/pipeline/frontend/yaml/compiler/convert.go

208 lines
6 KiB
Go
Raw Normal View History

// Copyright 2023 Woodpecker 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.
2017-03-05 07:56:08 +00:00
package compiler
import (
"fmt"
"path"
"path/filepath"
2017-04-10 10:39:50 +00:00
"strings"
2017-03-05 07:56:08 +00:00
"github.com/google/uuid"
"github.com/rs/zerolog/log"
"golang.org/x/exp/maps"
backend_types "github.com/woodpecker-ci/woodpecker/pipeline/backend/types"
"github.com/woodpecker-ci/woodpecker/pipeline/frontend/metadata"
"github.com/woodpecker-ci/woodpecker/pipeline/frontend/yaml/compiler/settings"
yaml_types "github.com/woodpecker-ci/woodpecker/pipeline/frontend/yaml/types"
"github.com/woodpecker-ci/woodpecker/pipeline/frontend/yaml/utils"
2017-03-05 07:56:08 +00:00
)
func (c *Compiler) createProcess(name string, container *yaml_types.Container, stepType backend_types.StepType) *backend_types.Step {
2017-03-05 07:56:08 +00:00
var (
uuid = uuid.New()
2017-03-05 07:56:08 +00:00
detached bool
workingdir string
workspace = fmt.Sprintf("%s_default:%s", c.prefix, c.base)
privileged = container.Privileged
networkMode = container.NetworkMode
ipcMode = container.IpcMode
2017-03-05 07:56:08 +00:00
// network = container.Network
)
networks := []backend_types.Conn{
{
2017-03-05 07:56:08 +00:00
Name: fmt.Sprintf("%s_default", c.prefix),
2017-05-16 10:50:06 +00:00
Aliases: []string{container.Name},
2017-03-05 07:56:08 +00:00
},
}
2017-04-10 16:27:34 +00:00
for _, network := range c.networks {
networks = append(networks, backend_types.Conn{
2017-04-10 16:27:34 +00:00
Name: network,
})
}
2017-03-05 07:56:08 +00:00
2017-03-19 09:07:21 +00:00
var volumes []string
if !c.local {
volumes = append(volumes, workspace)
2017-03-05 07:56:08 +00:00
}
2017-03-19 09:07:21 +00:00
volumes = append(volumes, c.volumes...)
2017-03-05 07:56:08 +00:00
for _, volume := range container.Volumes.Volumes {
volumes = append(volumes, volume.String())
}
// append default environment variables
environment := map[string]string{}
maps.Copy(environment, container.Environment)
maps.Copy(environment, c.env)
2017-03-05 07:56:08 +00:00
environment["CI_WORKSPACE"] = path.Join(c.base, c.path)
environment["CI_STEP_NAME"] = name
2017-03-05 07:56:08 +00:00
if stepType == backend_types.StepTypeService || container.Detached {
2017-07-21 21:52:52 +00:00
detached = true
2017-03-05 07:56:08 +00:00
}
if !detached || len(container.Commands) != 0 {
workingdir = c.stepWorkdir(container)
2017-03-05 07:56:08 +00:00
}
if !detached {
pluginSecrets := secretMap{}
for name, secret := range c.secrets {
if secret.Available(container) {
pluginSecrets[name] = secret
}
}
if err := settings.ParamsToEnv(container.Settings, environment, pluginSecrets.toStringMap()); err != nil {
log.Error().Err(err).Msg("paramsToEnv")
}
2017-03-05 07:56:08 +00:00
}
if utils.MatchImage(container.Image, c.escalated...) && container.IsPlugin() {
2017-07-21 21:52:52 +00:00
privileged = true
}
authConfig := backend_types.Auth{}
2017-04-06 16:04:25 +00:00
for _, registry := range c.registries {
if utils.MatchHostname(container.Image, registry.Hostname) {
2017-04-06 16:04:25 +00:00
authConfig.Username = registry.Username
authConfig.Password = registry.Password
authConfig.Email = registry.Email
break
}
}
2017-04-10 10:39:50 +00:00
for _, requested := range container.Secrets.Secrets {
secret, ok := c.secrets[strings.ToLower(requested.Source)]
if ok && secret.Available(container) {
2017-04-10 10:39:50 +00:00
environment[strings.ToUpper(requested.Target)] = secret.Value
}
}
// Kubernetes advanced settings
backendOptions := backend_types.BackendOptions{
Kubernetes: backend_types.KubernetesBackendOptions{
Resources: backend_types.Resources{
Limits: container.BackendOptions.Kubernetes.Resources.Limits,
Requests: container.BackendOptions.Kubernetes.Resources.Requests,
},
ServiceAccountName: container.BackendOptions.Kubernetes.ServiceAccountName,
NodeSelector: container.BackendOptions.Kubernetes.NodeSelector,
},
}
2017-06-22 19:06:28 +00:00
memSwapLimit := int64(container.MemSwapLimit)
if c.reslimit.MemSwapLimit != 0 {
memSwapLimit = c.reslimit.MemSwapLimit
}
memLimit := int64(container.MemLimit)
if c.reslimit.MemLimit != 0 {
memLimit = c.reslimit.MemLimit
}
shmSize := int64(container.ShmSize)
if c.reslimit.ShmSize != 0 {
shmSize = c.reslimit.ShmSize
}
cpuQuota := int64(container.CPUQuota)
if c.reslimit.CPUQuota != 0 {
cpuQuota = c.reslimit.CPUQuota
}
cpuShares := int64(container.CPUShares)
if c.reslimit.CPUShares != 0 {
cpuShares = c.reslimit.CPUShares
}
cpuSet := container.CPUSet
if c.reslimit.CPUSet != "" {
cpuSet = c.reslimit.CPUSet
}
// at least one constraint contain status success, or all constraints have no status set
onSuccess := container.When.IncludesStatusSuccess()
// at least one constraint must include the status failure.
onFailure := container.When.IncludesStatusFailure()
failure := container.Failure
if container.Failure == "" {
failure = metadata.FailureFail
}
return &backend_types.Step{
Name: name,
UUID: uuid.String(),
Type: stepType,
Alias: container.Name,
Image: container.Image,
Pull: container.Pull,
Detached: detached,
Privileged: privileged,
WorkingDir: workingdir,
Environment: environment,
Commands: container.Commands,
ExtraHosts: container.ExtraHosts,
Volumes: volumes,
Tmpfs: container.Tmpfs,
Devices: container.Devices,
Networks: networks,
DNS: container.DNS,
DNSSearch: container.DNSSearch,
MemSwapLimit: memSwapLimit,
MemLimit: memLimit,
ShmSize: shmSize,
Sysctls: container.Sysctls,
CPUQuota: cpuQuota,
CPUShares: cpuShares,
CPUSet: cpuSet,
AuthConfig: authConfig,
OnSuccess: onSuccess,
OnFailure: onFailure,
Failure: failure,
NetworkMode: networkMode,
IpcMode: ipcMode,
BackendOptions: backendOptions,
2017-03-05 07:56:08 +00:00
}
}
func (c *Compiler) stepWorkdir(container *yaml_types.Container) string {
if filepath.IsAbs(container.Directory) {
return container.Directory
}
return filepath.Join(c.base, c.path, container.Directory)
}