Skip to content
This repository has been archived by the owner on Sep 12, 2023. It is now read-only.

Commit

Permalink
switch to lbrlabs namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
jaxxstorm committed Sep 11, 2022
1 parent 0014095 commit d73df1a
Show file tree
Hide file tree
Showing 648 changed files with 45,667 additions and 2,244 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/reusable/command-dispatch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ jobs:
issue-type: pull-request
permission: write
reaction-token: ${{ secrets.GITHUB_TOKEN }}
repository: pulumiverse/pulumi-${{ inputs.provider_name }}
repository: lbrlabs/pulumi-${{ inputs.provider_name }}
token: ${{ secrets.PULUMI_BOT_TOKEN }}
strategy: {}
2 changes: 1 addition & 1 deletion .goreleaser.prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ builds:
ldflags:
- -s
- -w
- -X github.com/pulumiverse/pulumi-ovh/provider/pkg/version.Version={{.Tag}}
- -X github.com/lbrlabs/pulumi-ovh/provider/pkg/version.Version={{.Tag}}
main: ./cmd/pulumi-resource-ovh/
changelog:
skip: true
Expand Down
2 changes: 1 addition & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ builds:
ldflags:
- -s
- -w
- -X github.com/pulumiverse/pulumi-ovh/provider/pkg/version.Version={{.Tag}}
- -X github.com/lbrlabs/pulumi-ovh/provider/pkg/version.Version={{.Tag}}
main: ./cmd/pulumi-resource-ovh/
changelog:
skip: true
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PACK := ovh
ORG := pulumiverse
ORG := lbrlabs
PROJECT := github.com/${ORG}/pulumi-${PACK}
NODE_MODULE_NAME := @pulumiverse/${PACK}
NODE_MODULE_NAME := @lbrlabs/${PACK}
TF_NAME := ${PACK}
PROVIDER_PATH := provider
VERSION_PATH := ${PROVIDER_PATH}/pkg/version.Version
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,37 +11,37 @@ This package is available for several languages/platforms:
To use from JavaScript or TypeScript in Node.js, install using either `npm`:

```bash
npm install @pulumiverse/ovh
npm install @lbrlabs/ovh
```

or `yarn`:

```bash
yarn add @pulumiverse/ovh
yarn add @lbrlabs/ovh
```

### Python

To use from Python, install using `pip`:

```bash
pip install pulumiverse_ovh
pip install lbrlabs_ovh
```

### Go

To use from Go, use `go get` to grab the latest version of the library:

```bash
go get github.com/pulumiverse/pulumi-ovh/sdk/go/...
go get github.com/lbrlabs/pulumi-ovh/sdk/go/...
```

### .NET

To use from .NET, install using `dotnet add package`:

```bash
dotnet add package Pulumiverse.Ovh
dotnet add package lbrlabs.Ovh
```

## Configuration
Expand Down
8 changes: 4 additions & 4 deletions docs/installation-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ layout: installation

The Pulumi Ovh provider is available as a package in all Pulumi languages:

* JavaScript/TypeScript: [`@pulumiverse/time`](https://www.npmjs.com/package/@pulumiverse/ovh)
* Python: [`pulumiverse_time`](https://pypi.org/project/pulumiverse_ovh/)
* Go: [`github.com/pulumiverse/pulumi-time/sdk/go/time`](https://pkg.go.dev/github.com/pulumiverse/pulumi-ovh/sdk)
* .NET: [`Pulumiverse.Time`](https://www.nuget.org/packages/Pulumiverse.Ovh)
* JavaScript/TypeScript: [`@lbrlabs/time`](https://www.npmjs.com/package/@lbrlabs/ovh)
* Python: [`lbrlabs_time`](https://pypi.org/project/lbrlabs_ovh/)
* Go: [`github.com/lbrlabs/pulumi-time/sdk/go/time`](https://pkg.go.dev/github.com/lbrlabs/pulumi-ovh/sdk)
* .NET: [`lbrlabs.Time`](https://www.nuget.org/packages/lbrlabs.Ovh)

### Provider Binary

Expand Down
2 changes: 1 addition & 1 deletion examples/dotnet/user/Program.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Collections.Generic;
using Pulumi;
using Pulumiverse.Ovh;
using lbrlabs.Ovh;

return await Deployment.RunAsync(() =>
{
Expand Down
2 changes: 1 addition & 1 deletion examples/dotnet/user/ovh_user_csharp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<ItemGroup>
<PackageReference Include="Pulumi" Version="3.*" />
<!-- <PackageReference Include="Pulumiverse.Ovh" Version="0.0.1-alpha.1661904869" /> -->
<!-- <PackageReference Include="lbrlabs.Ovh" Version="0.0.1-alpha.1661904869" /> -->
</ItemGroup>

</Project>
4 changes: 2 additions & 2 deletions examples/examples_dotnet_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ func getCsharpBaseOptions(t *testing.T) integration.ProgramTestOptions {
baseCsharp := base.With(integration.ProgramTestOptions{
ExpectRefreshChanges: true,
Dependencies: []string{
"Pulumiverse.Scaleway",
"lbrlabs.Scaleway",
},
})

return baseCsharp
}
}
3 changes: 1 addition & 2 deletions examples/examples_go_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,13 @@ func TestAccUserGo(t *testing.T) {
integration.ProgramTest(t, &test)
}


func getGoBaseOptions(t *testing.T) integration.ProgramTestOptions {
base := getBaseOptions(t)

baseGo := base.With(integration.ProgramTestOptions{
ExpectRefreshChanges: true,
Dependencies: []string{
"github.com/pulumiverse/pulumi-ovh/sdk/go/ovh",
"github.com/lbrlabs/pulumi-ovh/sdk/go/ovh",
},
})

Expand Down
5 changes: 2 additions & 3 deletions examples/examples_nodejs_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,14 @@ func TestAccUser(t *testing.T) {
integration.ProgramTest(t, &test)
}


func getJSBaseOptions(t *testing.T) integration.ProgramTestOptions {
base := getBaseOptions(t)
baseJS := base.With(integration.ProgramTestOptions{
ExpectRefreshChanges: true,
Dependencies: []string{
"@pulumiverse/scaleway",
"@lbrlabs/scaleway",
},
})

return baseJS
}
}
1,331 changes: 0 additions & 1,331 deletions examples/go.sum

This file was deleted.

4 changes: 2 additions & 2 deletions examples/go/user/go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/pulumiverse/pulumi-ovh/examples/go/user
module github.com/lbrlabs/pulumi-ovh/examples/go/user

go 1.19

Expand Down Expand Up @@ -57,5 +57,5 @@ require (
)

replace (
github.com/pulumiverse/pulumi-ovh/sdk/go/ovh => ../../../sdk/
github.com/lbrlabs/pulumi-ovh/sdk/go/ovh => ../../../sdk/
)
2 changes: 1 addition & 1 deletion examples/go/user/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package main
import (
"fmt"

ovh "github.com/lbrlabs/pulumi-ovh/sdk/go/ovh"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
ovh "github.com/pulumiverse/pulumi-ovh/sdk/go/ovh"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/python/user/__main__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import pulumiverse_ovh as ovh
import lbrlabs_ovh as ovh

user = ovh.CloudProjectUser(
"example",
Expand Down
2 changes: 1 addition & 1 deletion examples/ts/user/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as pulumi from "@pulumi/pulumi";
import * as ovh from "@pulumiverse/ovh";
import * as ovh from "@lbrlabs/ovh";

const user = new ovh.CloudProjectUser("example", {
serviceName: "33c6e97fc8d241ff939bba3ad6e11ea7",
Expand Down
Loading

0 comments on commit d73df1a

Please sign in to comment.