com.pulumi.azure.arckubernetes.kotlin.FluxConfigurationArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.arckubernetes.kotlin
import com.pulumi.azure.arckubernetes.FluxConfigurationArgs.builder
import com.pulumi.azure.arckubernetes.kotlin.inputs.FluxConfigurationBlobStorageArgs
import com.pulumi.azure.arckubernetes.kotlin.inputs.FluxConfigurationBlobStorageArgsBuilder
import com.pulumi.azure.arckubernetes.kotlin.inputs.FluxConfigurationBucketArgs
import com.pulumi.azure.arckubernetes.kotlin.inputs.FluxConfigurationBucketArgsBuilder
import com.pulumi.azure.arckubernetes.kotlin.inputs.FluxConfigurationGitRepositoryArgs
import com.pulumi.azure.arckubernetes.kotlin.inputs.FluxConfigurationGitRepositoryArgsBuilder
import com.pulumi.azure.arckubernetes.kotlin.inputs.FluxConfigurationKustomizationArgs
import com.pulumi.azure.arckubernetes.kotlin.inputs.FluxConfigurationKustomizationArgsBuilder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* Manages an Arc Kubernetes Flux Configuration.
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as azure from "@pulumi/azure";
* import * as std from "@pulumi/std";
* const example = new azure.core.ResourceGroup("example", {
* name: "example-resources",
* location: "West Europe",
* });
* const exampleCluster = new azure.arckubernetes.Cluster("example", {
* name: "example-akcc",
* resourceGroupName: example.name,
* location: "West Europe",
* agentPublicKeyCertificate: std.filebase64({
* input: "testdata/public.cer",
* }).then(invoke => invoke.result),
* identity: {
* type: "SystemAssigned",
* },
* tags: {
* ENV: "Test",
* },
* });
* const exampleClusterExtension = new azure.arckubernetes.ClusterExtension("example", {
* name: "example-ext",
* clusterId: test.id,
* extensionType: "microsoft.flux",
* });
* const exampleFluxConfiguration = new azure.arckubernetes.FluxConfiguration("example", {
* name: "example-fc",
* clusterId: test.id,
* namespace: "flux",
* gitRepository: {
* url: "https://github.com/Azure/arc-k8s-demo",
* referenceType: "branch",
* referenceValue: "main",
* },
* kustomizations: [{
* name: "kustomization-1",
* }],
* });
* ```
* ```python
* import pulumi
* import pulumi_azure as azure
* import pulumi_std as std
* example = azure.core.ResourceGroup("example",
* name="example-resources",
* location="West Europe")
* example_cluster = azure.arckubernetes.Cluster("example",
* name="example-akcc",
* resource_group_name=example.name,
* location="West Europe",
* agent_public_key_certificate=std.filebase64(input="testdata/public.cer").result,
* identity=azure.arckubernetes.ClusterIdentityArgs(
* type="SystemAssigned",
* ),
* tags={
* "ENV": "Test",
* })
* example_cluster_extension = azure.arckubernetes.ClusterExtension("example",
* name="example-ext",
* cluster_id=test["id"],
* extension_type="microsoft.flux")
* example_flux_configuration = azure.arckubernetes.FluxConfiguration("example",
* name="example-fc",
* cluster_id=test["id"],
* namespace="flux",
* git_repository=azure.arckubernetes.FluxConfigurationGitRepositoryArgs(
* url="https://github.com/Azure/arc-k8s-demo",
* reference_type="branch",
* reference_value="main",
* ),
* kustomizations=[azure.arckubernetes.FluxConfigurationKustomizationArgs(
* name="kustomization-1",
* )])
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Azure = Pulumi.Azure;
* using Std = Pulumi.Std;
* return await Deployment.RunAsync(() =>
* {
* var example = new Azure.Core.ResourceGroup("example", new()
* {
* Name = "example-resources",
* Location = "West Europe",
* });
* var exampleCluster = new Azure.ArcKubernetes.Cluster("example", new()
* {
* Name = "example-akcc",
* ResourceGroupName = example.Name,
* Location = "West Europe",
* AgentPublicKeyCertificate = Std.Filebase64.Invoke(new()
* {
* Input = "testdata/public.cer",
* }).Apply(invoke => invoke.Result),
* Identity = new Azure.ArcKubernetes.Inputs.ClusterIdentityArgs
* {
* Type = "SystemAssigned",
* },
* Tags =
* {
* { "ENV", "Test" },
* },
* });
* var exampleClusterExtension = new Azure.ArcKubernetes.ClusterExtension("example", new()
* {
* Name = "example-ext",
* ClusterId = test.Id,
* ExtensionType = "microsoft.flux",
* });
* var exampleFluxConfiguration = new Azure.ArcKubernetes.FluxConfiguration("example", new()
* {
* Name = "example-fc",
* ClusterId = test.Id,
* Namespace = "flux",
* GitRepository = new Azure.ArcKubernetes.Inputs.FluxConfigurationGitRepositoryArgs
* {
* Url = "https://github.com/Azure/arc-k8s-demo",
* ReferenceType = "branch",
* ReferenceValue = "main",
* },
* Kustomizations = new[]
* {
* new Azure.ArcKubernetes.Inputs.FluxConfigurationKustomizationArgs
* {
* Name = "kustomization-1",
* },
* },
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-azure/sdk/v5/go/azure/arckubernetes"
* "github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
* "github.com/pulumi/pulumi-std/sdk/go/std"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
* Name: pulumi.String("example-resources"),
* Location: pulumi.String("West Europe"),
* })
* if err != nil {
* return err
* }
* invokeFilebase64, err := std.Filebase64(ctx, &std.Filebase64Args{
* Input: "testdata/public.cer",
* }, nil)
* if err != nil {
* return err
* }
* _, err = arckubernetes.NewCluster(ctx, "example", &arckubernetes.ClusterArgs{
* Name: pulumi.String("example-akcc"),
* ResourceGroupName: example.Name,
* Location: pulumi.String("West Europe"),
* AgentPublicKeyCertificate: invokeFilebase64.Result,
* Identity: &arckubernetes.ClusterIdentityArgs{
* Type: pulumi.String("SystemAssigned"),
* },
* Tags: pulumi.StringMap{
* "ENV": pulumi.String("Test"),
* },
* })
* if err != nil {
* return err
* }
* _, err = arckubernetes.NewClusterExtension(ctx, "example", &arckubernetes.ClusterExtensionArgs{
* Name: pulumi.String("example-ext"),
* ClusterId: pulumi.Any(test.Id),
* ExtensionType: pulumi.String("microsoft.flux"),
* })
* if err != nil {
* return err
* }
* _, err = arckubernetes.NewFluxConfiguration(ctx, "example", &arckubernetes.FluxConfigurationArgs{
* Name: pulumi.String("example-fc"),
* ClusterId: pulumi.Any(test.Id),
* Namespace: pulumi.String("flux"),
* GitRepository: &arckubernetes.FluxConfigurationGitRepositoryArgs{
* Url: pulumi.String("https://github.com/Azure/arc-k8s-demo"),
* ReferenceType: pulumi.String("branch"),
* ReferenceValue: pulumi.String("main"),
* },
* Kustomizations: arckubernetes.FluxConfigurationKustomizationArray{
* &arckubernetes.FluxConfigurationKustomizationArgs{
* Name: pulumi.String("kustomization-1"),
* },
* },
* })
* if err != nil {
* return err
* }
* return nil
* })
* }
* ```
* ```java
* package generated_program;
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.azure.core.ResourceGroup;
* import com.pulumi.azure.core.ResourceGroupArgs;
* import com.pulumi.azure.arckubernetes.Cluster;
* import com.pulumi.azure.arckubernetes.ClusterArgs;
* import com.pulumi.azure.arckubernetes.inputs.ClusterIdentityArgs;
* import com.pulumi.azure.arckubernetes.ClusterExtension;
* import com.pulumi.azure.arckubernetes.ClusterExtensionArgs;
* import com.pulumi.azure.arckubernetes.FluxConfiguration;
* import com.pulumi.azure.arckubernetes.FluxConfigurationArgs;
* import com.pulumi.azure.arckubernetes.inputs.FluxConfigurationGitRepositoryArgs;
* import com.pulumi.azure.arckubernetes.inputs.FluxConfigurationKustomizationArgs;
* 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) {
* var example = new ResourceGroup("example", ResourceGroupArgs.builder()
* .name("example-resources")
* .location("West Europe")
* .build());
* var exampleCluster = new Cluster("exampleCluster", ClusterArgs.builder()
* .name("example-akcc")
* .resourceGroupName(example.name())
* .location("West Europe")
* .agentPublicKeyCertificate(StdFunctions.filebase64(Filebase64Args.builder()
* .input("testdata/public.cer")
* .build()).result())
* .identity(ClusterIdentityArgs.builder()
* .type("SystemAssigned")
* .build())
* .tags(Map.of("ENV", "Test"))
* .build());
* var exampleClusterExtension = new ClusterExtension("exampleClusterExtension", ClusterExtensionArgs.builder()
* .name("example-ext")
* .clusterId(test.id())
* .extensionType("microsoft.flux")
* .build());
* var exampleFluxConfiguration = new FluxConfiguration("exampleFluxConfiguration", FluxConfigurationArgs.builder()
* .name("example-fc")
* .clusterId(test.id())
* .namespace("flux")
* .gitRepository(FluxConfigurationGitRepositoryArgs.builder()
* .url("https://github.com/Azure/arc-k8s-demo")
* .referenceType("branch")
* .referenceValue("main")
* .build())
* .kustomizations(FluxConfigurationKustomizationArgs.builder()
* .name("kustomization-1")
* .build())
* .build());
* }
* }
* ```
* ```yaml
* resources:
* example:
* type: azure:core:ResourceGroup
* properties:
* name: example-resources
* location: West Europe
* exampleCluster:
* type: azure:arckubernetes:Cluster
* name: example
* properties:
* name: example-akcc
* resourceGroupName: ${example.name}
* location: West Europe
* agentPublicKeyCertificate:
* fn::invoke:
* Function: std:filebase64
* Arguments:
* input: testdata/public.cer
* Return: result
* identity:
* type: SystemAssigned
* tags:
* ENV: Test
* exampleClusterExtension:
* type: azure:arckubernetes:ClusterExtension
* name: example
* properties:
* name: example-ext
* clusterId: ${test.id}
* extensionType: microsoft.flux
* exampleFluxConfiguration:
* type: azure:arckubernetes:FluxConfiguration
* name: example
* properties:
* name: example-fc
* clusterId: ${test.id}
* namespace: flux
* gitRepository:
* url: https://github.com/Azure/arc-k8s-demo
* referenceType: branch
* referenceValue: main
* kustomizations:
* - name: kustomization-1
* ```
*
* ## Import
* Arc Kubernetes Flux Configuration can be imported using the `resource id` for different `cluster_resource_name`, e.g.
* ```sh
* $ pulumi import azure:arckubernetes/fluxConfiguration:FluxConfiguration example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup1/providers/Microsoft.Kubernetes/connectedClusters/cluster1/providers/Microsoft.KubernetesConfiguration/fluxConfigurations/fluxConfiguration1
* ```
* @property blobStorage An `blob_storage` block as defined below.
* @property bucket A `bucket` block as defined below.
* @property clusterId Specifies the Cluster ID. Changing this forces a new Arc Kubernetes Cluster Extension to be created.
* @property continuousReconciliationEnabled Whether the configuration will keep its reconciliation of its kustomizations and sources with the repository. Defaults to `true`.
* @property gitRepository A `git_repository` block as defined below.
* @property kustomizations A `kustomizations` block as defined below.
* @property name Specifies the name which should be used for this Arc Kubernetes Flux Configuration. Changing this forces a new Arc Kubernetes Flux Configuration to be created.
* @property namespace Specifies the namespace to which this configuration is installed to. Changing this forces a new Arc Kubernetes Flux Configuration to be created.
* @property scope Specifies the scope at which the operator will be installed. Possible values are `cluster` and `namespace`. Defaults to `namespace`. Changing this forces a new Arc Kubernetes Flux Configuration to be created.
*/
public data class FluxConfigurationArgs(
public val blobStorage: Output? = null,
public val bucket: Output? = null,
public val clusterId: Output? = null,
public val continuousReconciliationEnabled: Output? = null,
public val gitRepository: Output? = null,
public val kustomizations: Output>? = null,
public val name: Output? = null,
public val namespace: Output? = null,
public val scope: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.arckubernetes.FluxConfigurationArgs =
com.pulumi.azure.arckubernetes.FluxConfigurationArgs.builder()
.blobStorage(blobStorage?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.bucket(bucket?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.clusterId(clusterId?.applyValue({ args0 -> args0 }))
.continuousReconciliationEnabled(continuousReconciliationEnabled?.applyValue({ args0 -> args0 }))
.gitRepository(gitRepository?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.kustomizations(
kustomizations?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.name(name?.applyValue({ args0 -> args0 }))
.namespace(namespace?.applyValue({ args0 -> args0 }))
.scope(scope?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [FluxConfigurationArgs].
*/
@PulumiTagMarker
public class FluxConfigurationArgsBuilder internal constructor() {
private var blobStorage: Output? = null
private var bucket: Output? = null
private var clusterId: Output? = null
private var continuousReconciliationEnabled: Output? = null
private var gitRepository: Output? = null
private var kustomizations: Output>? = null
private var name: Output? = null
private var namespace: Output? = null
private var scope: Output? = null
/**
* @param value An `blob_storage` block as defined below.
*/
@JvmName("jvdlrfwiayqnyhdg")
public suspend fun blobStorage(`value`: Output) {
this.blobStorage = value
}
/**
* @param value A `bucket` block as defined below.
*/
@JvmName("yeycvupveoklqjuc")
public suspend fun bucket(`value`: Output) {
this.bucket = value
}
/**
* @param value Specifies the Cluster ID. Changing this forces a new Arc Kubernetes Cluster Extension to be created.
*/
@JvmName("bppsmmvmmhcnbtin")
public suspend fun clusterId(`value`: Output) {
this.clusterId = value
}
/**
* @param value Whether the configuration will keep its reconciliation of its kustomizations and sources with the repository. Defaults to `true`.
*/
@JvmName("hmockftngcniuxto")
public suspend fun continuousReconciliationEnabled(`value`: Output) {
this.continuousReconciliationEnabled = value
}
/**
* @param value A `git_repository` block as defined below.
*/
@JvmName("ibyykkvwlexgwtwe")
public suspend fun gitRepository(`value`: Output) {
this.gitRepository = value
}
/**
* @param value A `kustomizations` block as defined below.
*/
@JvmName("cstfpgebxgvuqgak")
public suspend fun kustomizations(`value`: Output>) {
this.kustomizations = value
}
@JvmName("ngcbuwtucartmuro")
public suspend fun kustomizations(vararg values: Output) {
this.kustomizations = Output.all(values.asList())
}
/**
* @param values A `kustomizations` block as defined below.
*/
@JvmName("vntrdcgxjawiovxq")
public suspend fun kustomizations(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy