Skip to content

Commit 486138a

Browse files
adrianrioboanjannath
authored andcommittedJan 17, 2025·
feat: serverless mode on AWS
This commit introduces a serverless module to run serverless operations on AWS, and as an example use case it introduces the timeout parameter for rhel, fedora and windows targets on AWS. When timeout parameter is set a serverless task is scheduled based on the timeout to self destroy resources created by the create operation Signed-off-by: Adrian Riobo <ariobolo@redhat.com>
1 parent 5993b28 commit 486138a

File tree

825 files changed

+313379
-9149
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

825 files changed

+313379
-9149
lines changed
 

‎Makefile

+9
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,21 @@ VERSION ?= 0.8.0-dev
22
CONTAINER_MANAGER ?= podman
33
# Image URL to use all building/pushing image targets
44
IMG ?= quay.io/redhat-developer/mapt:v${VERSION}
5+
# IMG ?= quay.io/rhqp/mapt:serverless-10-amd64
6+
57
TKN_IMG ?= quay.io/redhat-developer/mapt:v${VERSION}-tkn
68

79
# Go and compilation related variables
810
GOPATH ?= $(shell go env GOPATH)
911
BUILD_DIR ?= out
1012
SOURCE_DIRS = cmd pkg
1113
SOURCES := $(shell find . -name "*.go" -not -path "./vendor/*")
14+
# repo
15+
ORG := github.com/redhat-developer
16+
MODULEPATH = $(ORG)/mapt
17+
# Linker flags
18+
VERSION_VARIABLES := -X $(MODULEPATH)/pkg/manager/context.OCI=$(IMG)
19+
1220
# https://golang.org/cmd/link/
1321
# LDFLAGS := $(VERSION_VARIABLES) -extldflags='-static' ${GO_EXTRA_LDFLAGS}
1422
LDFLAGS := $(VERSION_VARIABLES) ${GO_EXTRA_LDFLAGS}
@@ -76,6 +84,7 @@ lint: $(TOOLS_BINDIR)/golangci-lint
7684
# Build the container image
7785
.PHONY: oci-build
7886
oci-build: clean
87+
# ${CONTAINER_MANAGER} build -t $(IMG) -f oci/Containerfile .
7988
${CONTAINER_MANAGER} build --platform linux/amd64 --manifest $(IMG)-amd64 -f oci/Containerfile .
8089
${CONTAINER_MANAGER} build --platform linux/arm64 --manifest $(IMG)-arm64 -f oci/Containerfile .
8190

‎cmd/mapt/cmd/aws/hosts/constans.go

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
package hosts
22

33
const (
4-
spot string = "spot"
5-
spotDesc string = "if this flag is set the host will be created only on the region set by the AWS Env (AWS_DEFAULT_REGION)"
6-
airgap string = "airgap"
7-
airgapDesc string = "if this flag is set the host will be created as airgap machine. Access will done through a bastion"
4+
spot string = "spot"
5+
spotDesc string = "if this flag is set the host will be created only on the region set by the AWS Env (AWS_DEFAULT_REGION)"
6+
airgap string = "airgap"
7+
airgapDesc string = "if this flag is set the host will be created as airgap machine. Access will done through a bastion"
8+
serverless string = "serverless"
9+
serverlessDesc string = "if serverless is set the command will be executed as a serverless action."
10+
timeout string = "timeout"
11+
timeoutDesc string = "if timeout is set a serverless destroy actions will be set on the time according to the timeout. The Timeout value is a duration conforming to Go ParseDuration format."
812

913
vmTypes string = "vm-types"
1014
vmTypesDescription string = "set an specific set of vm-types and ignore any CPUs, Memory, Arch parameters set. Note vm-type should match requested arch. Also if --spot flag is used set at least 3 types."

0 commit comments

Comments
 (0)
Please sign in to comment.