Skip to content

Commit 2741df8

Browse files
committed
impr: publish every recipe on Docker Hub
1 parent 07b7dcd commit 2741df8

File tree

10 files changed

+11
-11
lines changed

10 files changed

+11
-11
lines changed

chall-manager/k8s.E1P/Pulumi.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
name: k8s-e1p
2+
runtime: go

chall-manager/kubernetes.ExposedMonopod/README.md renamed to chall-manager/k8s.E1P/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Kubernetes ExposedMonopod
1+
# Kubernetes ExposedMonopod (k8s.E1P)
22

33
This recipe is based upon [Chall-Manager ExposedMonopod SDK binding](https://github.com/ctfer-io/chall-manager/blob/main/sdk/kubernetes/exposed-monopod.go).
44
It does not add more values to it, but enable parametrizing inputs and outputs formats through additional values.
File renamed without changes.

chall-manager/kubernetes.ExposedMonopod/main.go renamed to chall-manager/k8s.E1P/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"github.com/ctfer-io/chall-manager/sdk"
1212
k8s "github.com/ctfer-io/chall-manager/sdk/kubernetes"
1313
"github.com/ctfer-io/recipes"
14-
"github.com/ctfer-io/recipes/chall-manager/kubernetes.ExposedMonopod/config"
14+
"github.com/ctfer-io/recipes/chall-manager/k8s.E1P/config"
1515
)
1616

1717
// Values are used as part of the templating of Config.ConnectionInfo.
@@ -30,7 +30,7 @@ func main() {
3030
}
3131

3232
// Deploy k8s.ExposedMonopod
33-
cm, err := k8s.NewExposedMonopod(req.Ctx, "recipe-e1p", &k8s.ExposedMonopodArgs{
33+
cm, err := k8s.NewExposedMonopod(req.Ctx, "recipe-k8s-e1p", &k8s.ExposedMonopodArgs{
3434
Identity: pulumi.String(req.Identity),
3535
Label: pulumi.String(req.Ctx.Stack()),
3636
Hostname: pulumi.String(req.Config.Hostname),

chall-manager/k8s.EMP/Pulumi.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
name: k8s-emp
2+
runtime: go

chall-manager/kubernetes.ExposedMultipod/README.md renamed to chall-manager/k8s.EMP/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Kubernetes ExposedMultipod
1+
# Kubernetes ExposedMultipod (k8s.EMP)
22

33
This recipe is based upon [Chall-Manager ExposedMultipod SDK binding](https://github.com/ctfer-io/chall-manager/blob/main/sdk/kubernetes/exposed-multipod.go).
44
It does not add more values to it, but enable parametrizing inputs and outputs formats through additional values.

chall-manager/kubernetes.ExposedMultipod/config/config.go renamed to chall-manager/k8s.EMP/config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package config
22

33
import (
4-
e1p "github.com/ctfer-io/recipes/chall-manager/kubernetes.ExposedMonopod/config"
4+
e1p "github.com/ctfer-io/recipes/chall-manager/k8s.E1P/config"
55
)
66

77
type Config struct {

chall-manager/kubernetes.ExposedMultipod/main.go renamed to chall-manager/k8s.EMP/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"github.com/ctfer-io/chall-manager/sdk"
1212
k8s "github.com/ctfer-io/chall-manager/sdk/kubernetes"
1313
"github.com/ctfer-io/recipes"
14-
"github.com/ctfer-io/recipes/chall-manager/kubernetes.ExposedMultipod/config"
14+
"github.com/ctfer-io/recipes/chall-manager/k8s.EMP/config"
1515
)
1616

1717
// Values are used as part of the templating of Config.ConnectionInfo.
@@ -30,7 +30,7 @@ func main() {
3030
}
3131

3232
// Deploy k8s.ExposedMultipod
33-
cm, err := k8s.NewExposedMultipod(req.Ctx, "recipe-emp", &k8s.ExposedMultipodArgs{
33+
cm, err := k8s.NewExposedMultipod(req.Ctx, "recipe-k8s-emp", &k8s.ExposedMultipodArgs{
3434
Identity: pulumi.String(req.Identity),
3535
Label: pulumi.String(req.Ctx.Stack()),
3636
Hostname: pulumi.String(req.Config.Hostname),

chall-manager/kubernetes.ExposedMonopod/Pulumi.yaml

Lines changed: 0 additions & 2 deletions
This file was deleted.

chall-manager/kubernetes.ExposedMultipod/Pulumi.yaml

Lines changed: 0 additions & 2 deletions
This file was deleted.

0 commit comments

Comments
 (0)