alicloud.cr.ChartRepository
Explore with Pulumi AI
Provides a CR Chart Repository resource.
For information about CR Chart Repository and how to use it, see What is Chart Repository.
NOTE: Available since v1.149.0.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const config = new pulumi.Config();
const name = config.get("name") || "tf-example";
const example = new alicloud.cr.RegistryEnterpriseInstance("example", {
paymentType: "Subscription",
period: 1,
renewPeriod: 0,
renewalStatus: "ManualRenewal",
instanceType: "Advanced",
instanceName: name,
});
const exampleChartNamespace = new alicloud.cr.ChartNamespace("example", {
instanceId: example.id,
namespaceName: name,
});
const exampleChartRepository = new alicloud.cr.ChartRepository("example", {
repoNamespaceName: exampleChartNamespace.namespaceName,
instanceId: exampleChartNamespace.instanceId,
repoName: name,
});
import pulumi
import pulumi_alicloud as alicloud
config = pulumi.Config()
name = config.get("name")
if name is None:
name = "tf-example"
example = alicloud.cr.RegistryEnterpriseInstance("example",
payment_type="Subscription",
period=1,
renew_period=0,
renewal_status="ManualRenewal",
instance_type="Advanced",
instance_name=name)
example_chart_namespace = alicloud.cr.ChartNamespace("example",
instance_id=example.id,
namespace_name=name)
example_chart_repository = alicloud.cr.ChartRepository("example",
repo_namespace_name=example_chart_namespace.namespace_name,
instance_id=example_chart_namespace.instance_id,
repo_name=name)
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/cr"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
cfg := config.New(ctx, "")
name := "tf-example"
if param := cfg.Get("name"); param != "" {
name = param
}
example, err := cr.NewRegistryEnterpriseInstance(ctx, "example", &cr.RegistryEnterpriseInstanceArgs{
PaymentType: pulumi.String("Subscription"),
Period: pulumi.Int(1),
RenewPeriod: pulumi.Int(0),
RenewalStatus: pulumi.String("ManualRenewal"),
InstanceType: pulumi.String("Advanced"),
InstanceName: pulumi.String(name),
})
if err != nil {
return err
}
exampleChartNamespace, err := cr.NewChartNamespace(ctx, "example", &cr.ChartNamespaceArgs{
InstanceId: example.ID(),
NamespaceName: pulumi.String(name),
})
if err != nil {
return err
}
_, err = cr.NewChartRepository(ctx, "example", &cr.ChartRepositoryArgs{
RepoNamespaceName: exampleChartNamespace.NamespaceName,
InstanceId: exampleChartNamespace.InstanceId,
RepoName: pulumi.String(name),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var config = new Config();
var name = config.Get("name") ?? "tf-example";
var example = new AliCloud.CR.RegistryEnterpriseInstance("example", new()
{
PaymentType = "Subscription",
Period = 1,
RenewPeriod = 0,
RenewalStatus = "ManualRenewal",
InstanceType = "Advanced",
InstanceName = name,
});
var exampleChartNamespace = new AliCloud.CR.ChartNamespace("example", new()
{
InstanceId = example.Id,
NamespaceName = name,
});
var exampleChartRepository = new AliCloud.CR.ChartRepository("example", new()
{
RepoNamespaceName = exampleChartNamespace.NamespaceName,
InstanceId = exampleChartNamespace.InstanceId,
RepoName = name,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.cr.RegistryEnterpriseInstance;
import com.pulumi.alicloud.cr.RegistryEnterpriseInstanceArgs;
import com.pulumi.alicloud.cr.ChartNamespace;
import com.pulumi.alicloud.cr.ChartNamespaceArgs;
import com.pulumi.alicloud.cr.ChartRepository;
import com.pulumi.alicloud.cr.ChartRepositoryArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var config = ctx.config();
final var name = config.get("name").orElse("tf-example");
var example = new RegistryEnterpriseInstance("example", RegistryEnterpriseInstanceArgs.builder()
.paymentType("Subscription")
.period(1)
.renewPeriod(0)
.renewalStatus("ManualRenewal")
.instanceType("Advanced")
.instanceName(name)
.build());
var exampleChartNamespace = new ChartNamespace("exampleChartNamespace", ChartNamespaceArgs.builder()
.instanceId(example.id())
.namespaceName(name)
.build());
var exampleChartRepository = new ChartRepository("exampleChartRepository", ChartRepositoryArgs.builder()
.repoNamespaceName(exampleChartNamespace.namespaceName())
.instanceId(exampleChartNamespace.instanceId())
.repoName(name)
.build());
}
}
configuration:
name:
type: string
default: tf-example
resources:
example:
type: alicloud:cr:RegistryEnterpriseInstance
properties:
paymentType: Subscription
period: 1
renewPeriod: 0
renewalStatus: ManualRenewal
instanceType: Advanced
instanceName: ${name}
exampleChartNamespace:
type: alicloud:cr:ChartNamespace
name: example
properties:
instanceId: ${example.id}
namespaceName: ${name}
exampleChartRepository:
type: alicloud:cr:ChartRepository
name: example
properties:
repoNamespaceName: ${exampleChartNamespace.namespaceName}
instanceId: ${exampleChartNamespace.instanceId}
repoName: ${name}
Create ChartRepository Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ChartRepository(name: string, args: ChartRepositoryArgs, opts?: CustomResourceOptions);
@overload
def ChartRepository(resource_name: str,
args: ChartRepositoryArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ChartRepository(resource_name: str,
opts: Optional[ResourceOptions] = None,
instance_id: Optional[str] = None,
repo_name: Optional[str] = None,
repo_namespace_name: Optional[str] = None,
repo_type: Optional[str] = None,
summary: Optional[str] = None)
func NewChartRepository(ctx *Context, name string, args ChartRepositoryArgs, opts ...ResourceOption) (*ChartRepository, error)
public ChartRepository(string name, ChartRepositoryArgs args, CustomResourceOptions? opts = null)
public ChartRepository(String name, ChartRepositoryArgs args)
public ChartRepository(String name, ChartRepositoryArgs args, CustomResourceOptions options)
type: alicloud:cr:ChartRepository
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ChartRepositoryArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ChartRepositoryArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ChartRepositoryArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ChartRepositoryArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ChartRepositoryArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var chartRepositoryResource = new AliCloud.CR.ChartRepository("chartRepositoryResource", new()
{
InstanceId = "string",
RepoName = "string",
RepoNamespaceName = "string",
RepoType = "string",
Summary = "string",
});
example, err := cr.NewChartRepository(ctx, "chartRepositoryResource", &cr.ChartRepositoryArgs{
InstanceId: pulumi.String("string"),
RepoName: pulumi.String("string"),
RepoNamespaceName: pulumi.String("string"),
RepoType: pulumi.String("string"),
Summary: pulumi.String("string"),
})
var chartRepositoryResource = new ChartRepository("chartRepositoryResource", ChartRepositoryArgs.builder()
.instanceId("string")
.repoName("string")
.repoNamespaceName("string")
.repoType("string")
.summary("string")
.build());
chart_repository_resource = alicloud.cr.ChartRepository("chartRepositoryResource",
instance_id="string",
repo_name="string",
repo_namespace_name="string",
repo_type="string",
summary="string")
const chartRepositoryResource = new alicloud.cr.ChartRepository("chartRepositoryResource", {
instanceId: "string",
repoName: "string",
repoNamespaceName: "string",
repoType: "string",
summary: "string",
});
type: alicloud:cr:ChartRepository
properties:
instanceId: string
repoName: string
repoNamespaceName: string
repoType: string
summary: string
ChartRepository Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The ChartRepository resource accepts the following input properties:
- Instance
Id string - The ID of the Container Registry instance.
- Repo
Name string - The name of the repository that you want to create.
- Repo
Namespace stringName - The namespace to which the repository belongs.
- Repo
Type string - The default repository type. Valid values:
PUBLIC
,PRIVATE
. - Summary string
- The summary about the repository.
- Instance
Id string - The ID of the Container Registry instance.
- Repo
Name string - The name of the repository that you want to create.
- Repo
Namespace stringName - The namespace to which the repository belongs.
- Repo
Type string - The default repository type. Valid values:
PUBLIC
,PRIVATE
. - Summary string
- The summary about the repository.
- instance
Id String - The ID of the Container Registry instance.
- repo
Name String - The name of the repository that you want to create.
- repo
Namespace StringName - The namespace to which the repository belongs.
- repo
Type String - The default repository type. Valid values:
PUBLIC
,PRIVATE
. - summary String
- The summary about the repository.
- instance
Id string - The ID of the Container Registry instance.
- repo
Name string - The name of the repository that you want to create.
- repo
Namespace stringName - The namespace to which the repository belongs.
- repo
Type string - The default repository type. Valid values:
PUBLIC
,PRIVATE
. - summary string
- The summary about the repository.
- instance_
id str - The ID of the Container Registry instance.
- repo_
name str - The name of the repository that you want to create.
- repo_
namespace_ strname - The namespace to which the repository belongs.
- repo_
type str - The default repository type. Valid values:
PUBLIC
,PRIVATE
. - summary str
- The summary about the repository.
- instance
Id String - The ID of the Container Registry instance.
- repo
Name String - The name of the repository that you want to create.
- repo
Namespace StringName - The namespace to which the repository belongs.
- repo
Type String - The default repository type. Valid values:
PUBLIC
,PRIVATE
. - summary String
- The summary about the repository.
Outputs
All input properties are implicitly available as output properties. Additionally, the ChartRepository resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing ChartRepository Resource
Get an existing ChartRepository resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ChartRepositoryState, opts?: CustomResourceOptions): ChartRepository
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
instance_id: Optional[str] = None,
repo_name: Optional[str] = None,
repo_namespace_name: Optional[str] = None,
repo_type: Optional[str] = None,
summary: Optional[str] = None) -> ChartRepository
func GetChartRepository(ctx *Context, name string, id IDInput, state *ChartRepositoryState, opts ...ResourceOption) (*ChartRepository, error)
public static ChartRepository Get(string name, Input<string> id, ChartRepositoryState? state, CustomResourceOptions? opts = null)
public static ChartRepository get(String name, Output<String> id, ChartRepositoryState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Instance
Id string - The ID of the Container Registry instance.
- Repo
Name string - The name of the repository that you want to create.
- Repo
Namespace stringName - The namespace to which the repository belongs.
- Repo
Type string - The default repository type. Valid values:
PUBLIC
,PRIVATE
. - Summary string
- The summary about the repository.
- Instance
Id string - The ID of the Container Registry instance.
- Repo
Name string - The name of the repository that you want to create.
- Repo
Namespace stringName - The namespace to which the repository belongs.
- Repo
Type string - The default repository type. Valid values:
PUBLIC
,PRIVATE
. - Summary string
- The summary about the repository.
- instance
Id String - The ID of the Container Registry instance.
- repo
Name String - The name of the repository that you want to create.
- repo
Namespace StringName - The namespace to which the repository belongs.
- repo
Type String - The default repository type. Valid values:
PUBLIC
,PRIVATE
. - summary String
- The summary about the repository.
- instance
Id string - The ID of the Container Registry instance.
- repo
Name string - The name of the repository that you want to create.
- repo
Namespace stringName - The namespace to which the repository belongs.
- repo
Type string - The default repository type. Valid values:
PUBLIC
,PRIVATE
. - summary string
- The summary about the repository.
- instance_
id str - The ID of the Container Registry instance.
- repo_
name str - The name of the repository that you want to create.
- repo_
namespace_ strname - The namespace to which the repository belongs.
- repo_
type str - The default repository type. Valid values:
PUBLIC
,PRIVATE
. - summary str
- The summary about the repository.
- instance
Id String - The ID of the Container Registry instance.
- repo
Name String - The name of the repository that you want to create.
- repo
Namespace StringName - The namespace to which the repository belongs.
- repo
Type String - The default repository type. Valid values:
PUBLIC
,PRIVATE
. - summary String
- The summary about the repository.
Import
CR Chart Repository can be imported using the id, e.g.
$ pulumi import alicloud:cr/chartRepository:ChartRepository example <instance_id>:<repo_namespace_name>:<repo_name>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloud
Terraform Provider.