Skip to content

Commit bacae7e

Browse files
committed
chore: rebranding to mapt on redhat-developer org
Signed-off-by: Adrian Riobo Lorenzo <[email protected]>
1 parent 8362d19 commit bacae7e

Some content is hidden

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

70 files changed

+430
-424
lines changed

.github/workflows/build-oci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ on:
99
branches: [ main ]
1010

1111
jobs:
12-
build-qenvs:
13-
name: build-qenvs
12+
build-mapt:
13+
name: build-mapt
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout code

Makefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
VERSION ?= 0.7.0-dev
22
CONTAINER_MANAGER ?= podman
33
# Image URL to use all building/pushing image targets
4-
IMG ?= quay.io/rhqp/qenvs:v${VERSION}
5-
TKN_IMG ?= quay.io/rhqp/qenvs-tkn:v${VERSION}
4+
IMG ?= quay.io/redhat-developer/mapt:v${VERSION}
5+
TKN_IMG ?= quay.io/redhat-developer/mapt:v${VERSION}-tkn
66

77
# Go and compilation related variables
88
GOPATH ?= $(shell go env GOPATH)
@@ -35,11 +35,11 @@ check: build test lint
3535
install: $(SOURCES)
3636
go install -ldflags="$(LDFLAGS)" $(GO_EXTRA_BUILDFLAGS) ./cmd
3737

38-
$(BUILD_DIR)/qenvs: $(SOURCES)
39-
GOOS=linux GOARCH=amd64 go build -gcflags="$(GCFLAGS)" -ldflags="$(LDFLAGS)" -o $(BUILD_DIR)/qenvs $(GO_EXTRA_BUILDFLAGS) ./cmd
38+
$(BUILD_DIR)/mapt: $(SOURCES)
39+
GOOS=linux GOARCH=amd64 go build -gcflags="$(GCFLAGS)" -ldflags="$(LDFLAGS)" -o $(BUILD_DIR)/mapt $(GO_EXTRA_BUILDFLAGS) ./cmd
4040

4141
.PHONY: build
42-
build: $(BUILD_DIR)/qenvs
42+
build: $(BUILD_DIR)/mapt
4343

4444
.PHONY: test
4545
test:
@@ -48,7 +48,7 @@ test:
4848
.PHONY: clean ## Remove all build artifacts
4949
clean:
5050
rm -rf $(BUILD_DIR)
51-
rm -f $(GOPATH)/bin/qenvs
51+
rm -f $(GOPATH)/bin/mapt
5252

5353
.PHONY: fmt
5454
fmt:

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
1-
# qenvs
1+
# mapt
22

3-
automation for qe environments using pulumi
3+
This is a Multi Architecture Provisionig Tool
44

5-
![code check](https://github.com/adrianriobo/qenvs/actions/workflows/build-go.yaml/badge.svg)
6-
![oci builds](https://github.com/adrianriobo/qenvs/actions/workflows/build-oci.yaml/badge.svg)
5+
It allows to spin multiple target environments across multiple cloud providers implementing multiple optimizations like cross data for spot price and eviction rates, or pre create snapshost to improve boot times, ...among others.
6+
7+
![code check](https://github.com/redhat-developer/mapt/actions/workflows/build-go.yaml/badge.svg)
8+
![oci builds](https://github.com/redhat-developer/mapt/actions/workflows/build-oci.yaml/badge.svg)
79

810
## Overview
911

1012
This project is intended to easily spin environments and plug them in on any CI/CD system through ssh.
1113

12-
Qenvs create the target machine and return the information and credentials required to connect within the target marchine (host + username + private key)
14+
mapt create the target machine and return the information and credentials required to connect within the target marchine (host + username + private key)
1315

14-
Also Qenvs offers a set of features wich are transversal to each type of target machine as so they can be applied to any of them (airgap, proxyed, vpn,...)
16+
Also mapt offers a set of features wich are transversal to each type of target machine as so they can be applied to any of them (airgap, proxyed, vpn,...)
1517

1618

1719
## Supported environments

cmd/cmd/aws/aws.go

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

33
import (
4-
"github.com/adrianriobo/qenvs/cmd/cmd/aws/hosts"
4+
"github.com/redhat-developer/mapt/cmd/cmd/aws/hosts"
55
"github.com/spf13/cobra"
66
"github.com/spf13/viper"
77
)

cmd/cmd/aws/hosts/fedora.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
package hosts
22

33
import (
4-
params "github.com/adrianriobo/qenvs/cmd/cmd/constants"
5-
qenvsContext "github.com/adrianriobo/qenvs/pkg/manager/context"
6-
"github.com/adrianriobo/qenvs/pkg/provider/aws/action/fedora"
7-
"github.com/adrianriobo/qenvs/pkg/util/logging"
4+
params "github.com/redhat-developer/mapt/cmd/cmd/constants"
5+
maptContext "github.com/redhat-developer/mapt/pkg/manager/context"
6+
"github.com/redhat-developer/mapt/pkg/provider/aws/action/fedora"
7+
"github.com/redhat-developer/mapt/pkg/util/logging"
88
"github.com/spf13/cobra"
99
"github.com/spf13/pflag"
1010
"github.com/spf13/viper"
@@ -44,7 +44,7 @@ func getFedoraCreate() *cobra.Command {
4444
}
4545

4646
// Initialize context
47-
qenvsContext.Init(
47+
maptContext.Init(
4848
viper.GetString(params.ProjectName),
4949
viper.GetString(params.BackedURL),
5050
viper.GetString(params.ConnectionDetailsOutput),
@@ -81,7 +81,7 @@ func getFedoraDestroy() *cobra.Command {
8181
return err
8282
}
8383

84-
qenvsContext.InitBase(
84+
maptContext.InitBase(
8585
viper.GetString(params.ProjectName),
8686
viper.GetString(params.BackedURL))
8787

cmd/cmd/aws/hosts/mac.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
package hosts
22

33
import (
4-
params "github.com/adrianriobo/qenvs/cmd/cmd/constants"
5-
qenvsContext "github.com/adrianriobo/qenvs/pkg/manager/context"
6-
"github.com/adrianriobo/qenvs/pkg/provider/aws/action/mac"
7-
"github.com/adrianriobo/qenvs/pkg/util/logging"
4+
params "github.com/redhat-developer/mapt/cmd/cmd/constants"
5+
maptContext "github.com/redhat-developer/mapt/pkg/manager/context"
6+
"github.com/redhat-developer/mapt/pkg/provider/aws/action/mac"
7+
"github.com/redhat-developer/mapt/pkg/util/logging"
88
"github.com/spf13/cobra"
99
"github.com/spf13/pflag"
1010
"github.com/spf13/viper"
@@ -55,7 +55,7 @@ func getMacRequest() *cobra.Command {
5555
}
5656

5757
// Initialize context
58-
qenvsContext.Init(
58+
maptContext.Init(
5959
viper.GetString(params.ProjectName),
6060
viper.GetString(params.BackedURL),
6161
viper.GetString(params.ConnectionDetailsOutput),

cmd/cmd/aws/hosts/rhel.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
package hosts
22

33
import (
4-
params "github.com/adrianriobo/qenvs/cmd/cmd/constants"
5-
qenvsContext "github.com/adrianriobo/qenvs/pkg/manager/context"
6-
"github.com/adrianriobo/qenvs/pkg/provider/aws/action/rhel"
7-
"github.com/adrianriobo/qenvs/pkg/util/logging"
4+
params "github.com/redhat-developer/mapt/cmd/cmd/constants"
5+
maptContext "github.com/redhat-developer/mapt/pkg/manager/context"
6+
"github.com/redhat-developer/mapt/pkg/provider/aws/action/rhel"
7+
"github.com/redhat-developer/mapt/pkg/util/logging"
88
"github.com/spf13/cobra"
99
"github.com/spf13/pflag"
1010
"github.com/spf13/viper"
@@ -50,7 +50,7 @@ func getRHELCreate() *cobra.Command {
5050
}
5151

5252
// Initialize context
53-
qenvsContext.Init(
53+
maptContext.Init(
5454
viper.GetString(params.ProjectName),
5555
viper.GetString(params.BackedURL),
5656
viper.GetString(params.ConnectionDetailsOutput),
@@ -101,7 +101,7 @@ func getRHELDestroy() *cobra.Command {
101101
return err
102102
}
103103

104-
qenvsContext.InitBase(
104+
maptContext.InitBase(
105105
viper.GetString(params.ProjectName),
106106
viper.GetString(params.BackedURL))
107107

cmd/cmd/aws/hosts/windows.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
package hosts
22

33
import (
4-
params "github.com/adrianriobo/qenvs/cmd/cmd/constants"
5-
qenvsContext "github.com/adrianriobo/qenvs/pkg/manager/context"
6-
"github.com/adrianriobo/qenvs/pkg/provider/aws/action/windows"
7-
"github.com/adrianriobo/qenvs/pkg/util/logging"
4+
params "github.com/redhat-developer/mapt/cmd/cmd/constants"
5+
maptContext "github.com/redhat-developer/mapt/pkg/manager/context"
6+
"github.com/redhat-developer/mapt/pkg/provider/aws/action/windows"
7+
"github.com/redhat-developer/mapt/pkg/util/logging"
88
"github.com/spf13/cobra"
99
"github.com/spf13/pflag"
1010
"github.com/spf13/viper"
@@ -55,7 +55,7 @@ func getWindowsCreate() *cobra.Command {
5555
}
5656

5757
// Initialize context
58-
qenvsContext.Init(
58+
maptContext.Init(
5959
viper.GetString(params.ProjectName),
6060
viper.GetString(params.BackedURL),
6161
viper.GetString(params.ConnectionDetailsOutput),
@@ -100,7 +100,7 @@ func getWindowsDestroy() *cobra.Command {
100100
return err
101101
}
102102

103-
qenvsContext.InitBase(
103+
maptContext.InitBase(
104104
viper.GetString(params.ProjectName),
105105
viper.GetString(params.BackedURL))
106106

cmd/cmd/aws/replica/replica.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package replica
22

33
import (
4-
params "github.com/adrianriobo/qenvs/cmd/cmd/constants"
5-
amireplication "github.com/adrianriobo/qenvs/pkg/provider/aws/modules/ami"
6-
"github.com/adrianriobo/qenvs/pkg/util/logging"
4+
params "github.com/redhat-developer/mapt/cmd/cmd/constants"
5+
amireplication "github.com/redhat-developer/mapt/pkg/provider/aws/modules/ami"
6+
"github.com/redhat-developer/mapt/pkg/util/logging"
77
"github.com/spf13/cobra"
88
"github.com/spf13/pflag"
99
"github.com/spf13/viper"

cmd/cmd/azure/azure.go

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

33
import (
4-
"github.com/adrianriobo/qenvs/cmd/cmd/azure/hosts"
4+
"github.com/redhat-developer/mapt/cmd/cmd/azure/hosts"
55
"github.com/spf13/cobra"
66
"github.com/spf13/viper"
77
)

0 commit comments

Comments
 (0)