Rancher 2 v8.1.2 published on Thursday, Mar 13, 2025 by Pulumi
rancher2.getRegistry
Explore with Pulumi AI
Use this data source to retrieve information about a Rancher v2 docker registry.
Depending of the availability, there are 2 types of Rancher v2 docker registries:
- Project registry: Available to all namespaces in the project_id
- Namespaced registry: Available to just namespace_idin theproject_id
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as rancher2 from "@pulumi/rancher2";
// Retrieve a rancher2 Project Registry
const foo = rancher2.getRegistry({
    name: "<name>",
    projectId: "<project_id>",
});
import pulumi
import pulumi_rancher2 as rancher2
# Retrieve a rancher2 Project Registry
foo = rancher2.get_registry(name="<name>",
    project_id="<project_id>")
package main
import (
	"github.com/pulumi/pulumi-rancher2/sdk/v8/go/rancher2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		// Retrieve a rancher2 Project Registry
		_, err := rancher2.LookupRegistry(ctx, &rancher2.LookupRegistryArgs{
			Name:      "<name>",
			ProjectId: "<project_id>",
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Rancher2 = Pulumi.Rancher2;
return await Deployment.RunAsync(() => 
{
    // Retrieve a rancher2 Project Registry
    var foo = Rancher2.GetRegistry.Invoke(new()
    {
        Name = "<name>",
        ProjectId = "<project_id>",
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.rancher2.Rancher2Functions;
import com.pulumi.rancher2.inputs.GetRegistryArgs;
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) {
        // Retrieve a rancher2 Project Registry
        final var foo = Rancher2Functions.getRegistry(GetRegistryArgs.builder()
            .name("<name>")
            .projectId("<project_id>")
            .build());
    }
}
variables:
  # Retrieve a rancher2 Project Registry
  foo:
    fn::invoke:
      function: rancher2:getRegistry
      arguments:
        name: <name>
        projectId: <project_id>
import * as pulumi from "@pulumi/pulumi";
import * as rancher2 from "@pulumi/rancher2";
// Retrieve a rancher2 Namespaced Registry
const foo = rancher2.getRegistry({
    name: "<name>",
    projectId: "<project_id>",
    namespaceId: "<namespace_id>",
});
import pulumi
import pulumi_rancher2 as rancher2
# Retrieve a rancher2 Namespaced Registry
foo = rancher2.get_registry(name="<name>",
    project_id="<project_id>",
    namespace_id="<namespace_id>")
package main
import (
	"github.com/pulumi/pulumi-rancher2/sdk/v8/go/rancher2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		// Retrieve a rancher2 Namespaced Registry
		_, err := rancher2.LookupRegistry(ctx, &rancher2.LookupRegistryArgs{
			Name:        "<name>",
			ProjectId:   "<project_id>",
			NamespaceId: pulumi.StringRef("<namespace_id>"),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Rancher2 = Pulumi.Rancher2;
return await Deployment.RunAsync(() => 
{
    // Retrieve a rancher2 Namespaced Registry
    var foo = Rancher2.GetRegistry.Invoke(new()
    {
        Name = "<name>",
        ProjectId = "<project_id>",
        NamespaceId = "<namespace_id>",
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.rancher2.Rancher2Functions;
import com.pulumi.rancher2.inputs.GetRegistryArgs;
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) {
        // Retrieve a rancher2 Namespaced Registry
        final var foo = Rancher2Functions.getRegistry(GetRegistryArgs.builder()
            .name("<name>")
            .projectId("<project_id>")
            .namespaceId("<namespace_id>")
            .build());
    }
}
variables:
  # Retrieve a rancher2 Namespaced Registry
  foo:
    fn::invoke:
      function: rancher2:getRegistry
      arguments:
        name: <name>
        projectId: <project_id>
        namespaceId: <namespace_id>
Using getRegistry
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getRegistry(args: GetRegistryArgs, opts?: InvokeOptions): Promise<GetRegistryResult>
function getRegistryOutput(args: GetRegistryOutputArgs, opts?: InvokeOptions): Output<GetRegistryResult>def get_registry(name: Optional[str] = None,
                 namespace_id: Optional[str] = None,
                 project_id: Optional[str] = None,
                 opts: Optional[InvokeOptions] = None) -> GetRegistryResult
def get_registry_output(name: Optional[pulumi.Input[str]] = None,
                 namespace_id: Optional[pulumi.Input[str]] = None,
                 project_id: Optional[pulumi.Input[str]] = None,
                 opts: Optional[InvokeOptions] = None) -> Output[GetRegistryResult]func LookupRegistry(ctx *Context, args *LookupRegistryArgs, opts ...InvokeOption) (*LookupRegistryResult, error)
func LookupRegistryOutput(ctx *Context, args *LookupRegistryOutputArgs, opts ...InvokeOption) LookupRegistryResultOutput> Note: This function is named LookupRegistry in the Go SDK.
public static class GetRegistry 
{
    public static Task<GetRegistryResult> InvokeAsync(GetRegistryArgs args, InvokeOptions? opts = null)
    public static Output<GetRegistryResult> Invoke(GetRegistryInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetRegistryResult> getRegistry(GetRegistryArgs args, InvokeOptions options)
public static Output<GetRegistryResult> getRegistry(GetRegistryArgs args, InvokeOptions options)
fn::invoke:
  function: rancher2:index/getRegistry:getRegistry
  arguments:
    # arguments dictionaryThe following arguments are supported:
- Name string
- The name of the registry (string)
- ProjectId string
- The project id where to assign the registry (string)
- NamespaceId string
- The namespace id where to assign the namespaced registry (string)
- Name string
- The name of the registry (string)
- ProjectId string
- The project id where to assign the registry (string)
- NamespaceId string
- The namespace id where to assign the namespaced registry (string)
- name String
- The name of the registry (string)
- projectId String
- The project id where to assign the registry (string)
- namespaceId String
- The namespace id where to assign the namespaced registry (string)
- name string
- The name of the registry (string)
- projectId string
- The project id where to assign the registry (string)
- namespaceId string
- The namespace id where to assign the namespaced registry (string)
- name str
- The name of the registry (string)
- project_id str
- The project id where to assign the registry (string)
- namespace_id str
- The namespace id where to assign the namespaced registry (string)
- name String
- The name of the registry (string)
- projectId String
- The project id where to assign the registry (string)
- namespaceId String
- The namespace id where to assign the namespaced registry (string)
getRegistry Result
The following output properties are available:
- Annotations Dictionary<string, string>
- (Computed) Annotations for Registry object (map)
- Description string
- (Computed) A registry description (string)
- Id string
- The provider-assigned unique ID for this managed resource.
- Labels Dictionary<string, string>
- (Computed) Labels for Registry object (map)
- Name string
- ProjectId string
- Registries
List<GetRegistry Registry> 
- (Computed) Registries data for registry (list)
- NamespaceId string
- Annotations map[string]string
- (Computed) Annotations for Registry object (map)
- Description string
- (Computed) A registry description (string)
- Id string
- The provider-assigned unique ID for this managed resource.
- Labels map[string]string
- (Computed) Labels for Registry object (map)
- Name string
- ProjectId string
- Registries
[]GetRegistry Registry 
- (Computed) Registries data for registry (list)
- NamespaceId string
- annotations Map<String,String>
- (Computed) Annotations for Registry object (map)
- description String
- (Computed) A registry description (string)
- id String
- The provider-assigned unique ID for this managed resource.
- labels Map<String,String>
- (Computed) Labels for Registry object (map)
- name String
- projectId String
- registries
List<GetRegistry Registry> 
- (Computed) Registries data for registry (list)
- namespaceId String
- annotations {[key: string]: string}
- (Computed) Annotations for Registry object (map)
- description string
- (Computed) A registry description (string)
- id string
- The provider-assigned unique ID for this managed resource.
- labels {[key: string]: string}
- (Computed) Labels for Registry object (map)
- name string
- projectId string
- registries
GetRegistry Registry[] 
- (Computed) Registries data for registry (list)
- namespaceId string
- annotations Mapping[str, str]
- (Computed) Annotations for Registry object (map)
- description str
- (Computed) A registry description (string)
- id str
- The provider-assigned unique ID for this managed resource.
- labels Mapping[str, str]
- (Computed) Labels for Registry object (map)
- name str
- project_id str
- registries
Sequence[GetRegistry Registry] 
- (Computed) Registries data for registry (list)
- namespace_id str
- annotations Map<String>
- (Computed) Annotations for Registry object (map)
- description String
- (Computed) A registry description (string)
- id String
- The provider-assigned unique ID for this managed resource.
- labels Map<String>
- (Computed) Labels for Registry object (map)
- name String
- projectId String
- registries List<Property Map>
- (Computed) Registries data for registry (list)
- namespaceId String
Supporting Types
GetRegistryRegistry  
Package Details
- Repository
- Rancher2 pulumi/pulumi-rancher2
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the rancher2Terraform Provider.