GetNamespace

Use this data source to retrieve information about a Rancher v2 namespace.

Example Usage

using Pulumi;
using Rancher2 = Pulumi.Rancher2;

class MyStack : Stack
{
    public MyStack()
    {
        var foo = Output.Create(Rancher2.GetNamespace.InvokeAsync(new Rancher2.GetNamespaceArgs
        {
            Name = "foo",
            ProjectId = rancher2_cluster.Foo_custom.Default_project_id,
        }));
    }

}

Coming soon!

import pulumi
import pulumi_rancher2 as rancher2

foo = rancher2.get_namespace(name="foo",
    project_id=rancher2_cluster["foo-custom"]["default_project_id"])
import * as pulumi from "@pulumi/pulumi";
import * as rancher2 from "@pulumi/rancher2";

const foo = rancher2_cluster_foo_custom.defaultProjectId.apply(defaultProjectId => rancher2.getNamespace({
    name: "foo",
    projectId: defaultProjectId,
}, { async: true }));

Using GetNamespace

function getNamespace(args: GetNamespaceArgs, opts?: InvokeOptions): Promise<GetNamespaceResult>
function  get_namespace(name=None, project_id=None, opts=None)
func LookupNamespace(ctx *Context, args *LookupNamespaceArgs, opts ...InvokeOption) (*LookupNamespaceResult, error)

Note: This function is named LookupNamespace in the Go SDK.

public static class GetNamespace {
    public static Task<GetNamespaceResult> InvokeAsync(GetNamespaceArgs args, InvokeOptions? opts = null)
}

The following arguments are supported:

Name string

The name of the namespace (string)

ProjectId string

The project id where namespace is assigned (string)

Name string

The name of the namespace (string)

ProjectId string

The project id where namespace is assigned (string)

name string

The name of the namespace (string)

projectId string

The project id where namespace is assigned (string)

name str

The name of the namespace (string)

project_id str

The project id where namespace is assigned (string)

GetNamespace Result

The following output properties are available:

Annotations Dictionary<string, object>

(Computed) Annotations for Node Pool object (map)

ContainerResourceLimit GetNamespaceContainerResourceLimit

(Computed) Default containers resource limits on namespace (List maxitem:1)

Description string

(Computed) A namespace description (string)

Id string

The provider-assigned unique ID for this managed resource.

Labels Dictionary<string, object>

(Computed) Labels for Node Pool object (map)

Name string
ProjectId string
ResourceQuota GetNamespaceResourceQuota

(Computed) Resource quota for namespace. Rancher v2.1.x or higher (list maxitems:1)

Annotations map[string]interface{}

(Computed) Annotations for Node Pool object (map)

ContainerResourceLimit GetNamespaceContainerResourceLimit

(Computed) Default containers resource limits on namespace (List maxitem:1)

Description string

(Computed) A namespace description (string)

Id string

The provider-assigned unique ID for this managed resource.

Labels map[string]interface{}

(Computed) Labels for Node Pool object (map)

Name string
ProjectId string
ResourceQuota GetNamespaceResourceQuota

(Computed) Resource quota for namespace. Rancher v2.1.x or higher (list maxitems:1)

annotations {[key: string]: any}

(Computed) Annotations for Node Pool object (map)

containerResourceLimit GetNamespaceContainerResourceLimit

(Computed) Default containers resource limits on namespace (List maxitem:1)

description string

(Computed) A namespace description (string)

id string

The provider-assigned unique ID for this managed resource.

labels {[key: string]: any}

(Computed) Labels for Node Pool object (map)

name string
projectId string
resourceQuota GetNamespaceResourceQuota

(Computed) Resource quota for namespace. Rancher v2.1.x or higher (list maxitems:1)

annotations Dict[str, Any]

(Computed) Annotations for Node Pool object (map)

container_resource_limit Dict[GetNamespaceContainerResourceLimit]

(Computed) Default containers resource limits on namespace (List maxitem:1)

description str

(Computed) A namespace description (string)

id str

The provider-assigned unique ID for this managed resource.

labels Dict[str, Any]

(Computed) Labels for Node Pool object (map)

name str
project_id str
resource_quota Dict[GetNamespaceResourceQuota]

(Computed) Resource quota for namespace. Rancher v2.1.x or higher (list maxitems:1)

Supporting Types

GetNamespaceContainerResourceLimit

See the output API doc for this type.

See the output API doc for this type.

See the output API doc for this type.

LimitsCpu string
LimitsMemory string
RequestsCpu string
RequestsMemory string
LimitsCpu string
LimitsMemory string
RequestsCpu string
RequestsMemory string
limitsCpu string
limitsMemory string
requestsCpu string
requestsMemory string
limitsCpu str
limitsMemory str
requestsCpu str
requestsMemory str

GetNamespaceResourceQuota

See the output API doc for this type.

See the output API doc for this type.

See the output API doc for this type.

Limit GetNamespaceResourceQuotaLimitArgs
Limit GetNamespaceResourceQuotaLimit
limit GetNamespaceResourceQuotaLimit
limit Dict[GetNamespaceResourceQuotaLimit]

GetNamespaceResourceQuotaLimit

See the output API doc for this type.

See the output API doc for this type.

See the output API doc for this type.

ConfigMaps string
LimitsCpu string
LimitsMemory string
PersistentVolumeClaims string
Pods string
ReplicationControllers string
RequestsCpu string
RequestsMemory string
RequestsStorage string
Secrets string
Services string
ServicesLoadBalancers string
ServicesNodePorts string
ConfigMaps string
LimitsCpu string
LimitsMemory string
PersistentVolumeClaims string
Pods string
ReplicationControllers string
RequestsCpu string
RequestsMemory string
RequestsStorage string
Secrets string
Services string
ServicesLoadBalancers string
ServicesNodePorts string
configMaps string
limitsCpu string
limitsMemory string
persistentVolumeClaims string
pods string
replicationControllers string
requestsCpu string
requestsMemory string
requestsStorage string
secrets string
services string
servicesLoadBalancers string
servicesNodePorts string
configMaps str
limitsCpu str
limitsMemory str
persistentVolumeClaims str
pods str
replicationControllers str
requestsCpu str
requestsMemory str
requestsStorage str
secrets str
services str
servicesLoadBalancers str
servicesNodePorts str

Package Details

Repository
https://github.com/pulumi/pulumi-rancher2
License
Apache-2.0
Notes
This Pulumi package is based on the rancher2 Terraform Provider.