Rename xyz -> docker-native
This commit is contained in:
2
Makefile
2
Makefile
@@ -2,7 +2,7 @@ PROJECT_NAME := Pulumi Xyz Resource Provider
|
|||||||
|
|
||||||
PACK := xyz
|
PACK := xyz
|
||||||
PACKDIR := sdk
|
PACKDIR := sdk
|
||||||
PROJECT := github.com/pulumi/pulumi-xyz
|
PROJECT := github.com/pulumi/pulumi-docker-native
|
||||||
NODE_MODULE_NAME := @pulumi/xyz
|
NODE_MODULE_NAME := @pulumi/xyz
|
||||||
NUGET_PKG_NAME := Pulumi.Xyz
|
NUGET_PKG_NAME := Pulumi.Xyz
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/pulumi/pulumi-xyz/sdk/go/xyz"
|
"github.com/pulumi/pulumi-docker-native/sdk/go/xyz"
|
||||||
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
|
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ package main
|
|||||||
import (
|
import (
|
||||||
p "github.com/pulumi/pulumi-go-provider"
|
p "github.com/pulumi/pulumi-go-provider"
|
||||||
|
|
||||||
xyz "github.com/pulumi/pulumi-xyz/provider"
|
xyz "github.com/pulumi/pulumi-docker-native/provider"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Serve the provider against Pulumi's Provider protocol.
|
// Serve the provider against Pulumi's Provider protocol.
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
module github.com/pulumi/pulumi-xyz/provider
|
module github.com/pulumi/pulumi-docker-native/provider
|
||||||
|
|
||||||
go 1.21
|
go 1.21
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
module github.com/pulumi/pulumi-xyz/sdk
|
module github.com/pulumi/pulumi-docker-native/sdk
|
||||||
|
|
||||||
go 1.21
|
go 1.21
|
||||||
|
|
||||||
|
|||||||
@@ -7,8 +7,8 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/blang/semver"
|
"github.com/blang/semver"
|
||||||
|
"github.com/pulumi/pulumi-docker-native/sdk/go/xyz/internal"
|
||||||
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
|
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
|
||||||
"internal"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
type module struct {
|
type module struct {
|
||||||
|
|||||||
@@ -7,8 +7,8 @@ import (
|
|||||||
"context"
|
"context"
|
||||||
"reflect"
|
"reflect"
|
||||||
|
|
||||||
|
"github.com/pulumi/pulumi-docker-native/sdk/go/xyz/internal"
|
||||||
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
|
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
|
||||||
"internal"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
type Provider struct {
|
type Provider struct {
|
||||||
|
|||||||
@@ -8,8 +8,9 @@ import (
|
|||||||
"reflect"
|
"reflect"
|
||||||
|
|
||||||
"errors"
|
"errors"
|
||||||
|
|
||||||
|
"github.com/pulumi/pulumi-docker-native/sdk/go/xyz/internal"
|
||||||
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
|
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
|
||||||
"internal"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
type Random struct {
|
type Random struct {
|
||||||
|
|||||||
@@ -1,14 +1,14 @@
|
|||||||
module github.com/pulumi/pulumi-xyz/tests
|
module github.com/pulumi/pulumi-docker-native
|
||||||
|
|
||||||
go 1.21
|
go 1.21
|
||||||
|
|
||||||
replace github.com/pulumi/pulumi-xyz/provider => ../provider
|
replace github.com/pulumi/pulumi-docker-native/provider => ../provider
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/blang/semver v3.5.1+incompatible
|
github.com/blang/semver v3.5.1+incompatible
|
||||||
|
github.com/pulumi/pulumi-docker-native/provider v0.0.0-00010101000000-000000000000
|
||||||
github.com/pulumi/pulumi-go-provider v0.11.1
|
github.com/pulumi/pulumi-go-provider v0.11.1
|
||||||
github.com/pulumi/pulumi-go-provider/integration v0.10.0
|
github.com/pulumi/pulumi-go-provider/integration v0.10.0
|
||||||
github.com/pulumi/pulumi-xyz/provider v0.0.0-00010101000000-000000000000
|
|
||||||
github.com/pulumi/pulumi/sdk/v3 v3.79.0
|
github.com/pulumi/pulumi/sdk/v3 v3.79.0
|
||||||
github.com/stretchr/testify v1.8.4
|
github.com/stretchr/testify v1.8.4
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ import (
|
|||||||
"github.com/stretchr/testify/assert"
|
"github.com/stretchr/testify/assert"
|
||||||
"github.com/stretchr/testify/require"
|
"github.com/stretchr/testify/require"
|
||||||
|
|
||||||
xyz "github.com/pulumi/pulumi-xyz/provider"
|
xyz "github.com/pulumi/pulumi-docker-native/provider"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestRandomCreate(t *testing.T) {
|
func TestRandomCreate(t *testing.T) {
|
||||||
|
|||||||
Reference in New Issue
Block a user