mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-01-23 07:38:24 +00:00
Merge branch 'origin/main' into 'next-release/main'
This commit is contained in:
commit
77acc390c1
4 changed files with 147 additions and 6 deletions
|
@ -18,10 +18,6 @@ FROM woodpeckerci/woodpecker-server:latest-alpine
|
||||||
RUN apk add -U --no-cache docker-credential-ecr-login
|
RUN apk add -U --no-cache docker-credential-ecr-login
|
||||||
```
|
```
|
||||||
|
|
||||||
## Podman support
|
|
||||||
|
|
||||||
While the agent was developed with Docker/Moby, Podman can also be used by setting the environment variable `DOCKER_HOST` to point to the Podman socket. In order to work without workarounds, Podman 4.0 (or above) is required.
|
|
||||||
|
|
||||||
## Image cleanup
|
## Image cleanup
|
||||||
|
|
||||||
The agent **will not** automatically remove images from the host. This task should be managed by the host system. For example, you can use a cron job to periodically do clean-up tasks for the CI runner.
|
The agent **will not** automatically remove images from the host. This task should be managed by the host system. For example, you can use a cron job to periodically do clean-up tasks for the CI runner.
|
||||||
|
@ -44,6 +40,12 @@ docker image rm $(docker images --filter "dangling=true" -q --no-trunc)
|
||||||
docker volume rm $(docker volume ls --filter name=^wp_* --filter dangling=true -q)
|
docker volume rm $(docker volume ls --filter name=^wp_* --filter dangling=true -q)
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Tips and tricks
|
||||||
|
|
||||||
|
### Podman
|
||||||
|
|
||||||
|
There is no official support for Podman, but one can try to set the environment variable `DOCKER_HOST` to point to the Podman socket. It might work. See also the [Blog posts](https://woodpecker-ci.org/blog).
|
||||||
|
|
||||||
## Configuration
|
## Configuration
|
||||||
|
|
||||||
### `WOODPECKER_BACKEND_DOCKER_NETWORK`
|
### `WOODPECKER_BACKEND_DOCKER_NETWORK`
|
||||||
|
|
59
pipeline/frontend/yaml/types/base/deprecations.go
Normal file
59
pipeline/frontend/yaml/types/base/deprecations.go
Normal file
|
@ -0,0 +1,59 @@
|
||||||
|
// Copyright 2024 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.
|
||||||
|
|
||||||
|
// TODO: delete file after v3.0.0 release
|
||||||
|
|
||||||
|
package base
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
)
|
||||||
|
|
||||||
|
type EnvironmentMap map[string]any
|
||||||
|
|
||||||
|
// UnmarshalYAML implements the Unmarshaler interface.
|
||||||
|
func (s *EnvironmentMap) UnmarshalYAML(unmarshal func(any) error) error {
|
||||||
|
var mapType map[string]any
|
||||||
|
err := unmarshal(&mapType)
|
||||||
|
if err == nil {
|
||||||
|
*s = mapType
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
var sliceType []any
|
||||||
|
if err := unmarshal(&sliceType); err == nil {
|
||||||
|
return fmt.Errorf("list syntax for 'environment' has been removed, use map syntax instead (https://woodpecker-ci.org/docs/usage/environment)")
|
||||||
|
}
|
||||||
|
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
type SecretsSlice []string
|
||||||
|
|
||||||
|
// UnmarshalYAML implements the Unmarshaler interface.
|
||||||
|
func (s *SecretsSlice) UnmarshalYAML(unmarshal func(any) error) error {
|
||||||
|
var stringSlice []string
|
||||||
|
err := unmarshal(&stringSlice)
|
||||||
|
if err == nil {
|
||||||
|
*s = stringSlice
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
var objectSlice []any
|
||||||
|
if err := unmarshal(&objectSlice); err == nil {
|
||||||
|
return fmt.Errorf("'secrets' property has been removed, use 'from_secret' instead (https://woodpecker-ci.org/docs/usage/secrets)")
|
||||||
|
}
|
||||||
|
|
||||||
|
return err
|
||||||
|
}
|
79
pipeline/frontend/yaml/types/base/deprecations_test.go
Normal file
79
pipeline/frontend/yaml/types/base/deprecations_test.go
Normal file
|
@ -0,0 +1,79 @@
|
||||||
|
// Copyright 2024 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.
|
||||||
|
|
||||||
|
// TODO: delete file after v3.0.0 release
|
||||||
|
|
||||||
|
package base
|
||||||
|
|
||||||
|
import (
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
"gopkg.in/yaml.v3"
|
||||||
|
)
|
||||||
|
|
||||||
|
type StructMap struct {
|
||||||
|
Foos EnvironmentMap `yaml:"foos,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type StructSecret struct {
|
||||||
|
Foos SecretsSlice `yaml:"foos,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestEnvironmentMapYaml(t *testing.T) {
|
||||||
|
str := `{foos: [bar=baz, far=faz]}`
|
||||||
|
s := StructMap{}
|
||||||
|
err := yaml.Unmarshal([]byte(str), &s)
|
||||||
|
if assert.Error(t, err) {
|
||||||
|
assert.EqualValues(t, "list syntax for 'environment' has been removed, use map syntax instead (https://woodpecker-ci.org/docs/usage/environment)", err.Error())
|
||||||
|
}
|
||||||
|
|
||||||
|
s.Foos = EnvironmentMap{"bar": "baz", "far": "faz"}
|
||||||
|
d, err := yaml.Marshal(&s)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
str = `foos:
|
||||||
|
bar: baz
|
||||||
|
far: faz
|
||||||
|
`
|
||||||
|
assert.EqualValues(t, str, string(d))
|
||||||
|
|
||||||
|
s2 := StructMap{}
|
||||||
|
assert.NoError(t, yaml.Unmarshal(d, &s2))
|
||||||
|
|
||||||
|
assert.Equal(t, EnvironmentMap{"bar": "baz", "far": "faz"}, s2.Foos)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestSecretsSlice(t *testing.T) {
|
||||||
|
str := `{foos: [ { source: mysql_username, target: mysql_username } ]}`
|
||||||
|
s := StructSecret{}
|
||||||
|
err := yaml.Unmarshal([]byte(str), &s)
|
||||||
|
if assert.Error(t, err) {
|
||||||
|
assert.EqualValues(t, "'secrets' property has been removed, use 'from_secret' instead (https://woodpecker-ci.org/docs/usage/secrets)", err.Error())
|
||||||
|
}
|
||||||
|
|
||||||
|
s.Foos = SecretsSlice{"bar", "baz", "faz"}
|
||||||
|
d, err := yaml.Marshal(&s)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
str = `foos:
|
||||||
|
- bar
|
||||||
|
- baz
|
||||||
|
- faz
|
||||||
|
`
|
||||||
|
assert.EqualValues(t, str, string(d))
|
||||||
|
|
||||||
|
s2 := StructSecret{}
|
||||||
|
assert.NoError(t, yaml.Unmarshal(d, &s2))
|
||||||
|
|
||||||
|
assert.Equal(t, SecretsSlice{"bar", "baz", "faz"}, s2.Foos)
|
||||||
|
}
|
|
@ -47,10 +47,11 @@ type (
|
||||||
Ports []string `yaml:"ports,omitempty"`
|
Ports []string `yaml:"ports,omitempty"`
|
||||||
DependsOn base.StringOrSlice `yaml:"depends_on,omitempty"`
|
DependsOn base.StringOrSlice `yaml:"depends_on,omitempty"`
|
||||||
|
|
||||||
Environment map[string]any `yaml:"environment,omitempty"`
|
// TODO: remove base.EnvironmentMap and use map[string]any after v3.0.0 release
|
||||||
|
Environment base.EnvironmentMap `yaml:"environment,omitempty"`
|
||||||
|
|
||||||
// Deprecated
|
// Deprecated
|
||||||
Secrets []string `yaml:"secrets,omitempty"`
|
Secrets base.SecretsSlice `yaml:"secrets,omitempty"`
|
||||||
|
|
||||||
// Docker and Kubernetes Specific
|
// Docker and Kubernetes Specific
|
||||||
Privileged bool `yaml:"privileged,omitempty"`
|
Privileged bool `yaml:"privileged,omitempty"`
|
||||||
|
|
Loading…
Reference in a new issue