How-To: Set up Radius with Flux

Learn how to set up Radius to work with Flux for GitOps

This guide will provide an overview of how to:

  1. Set up Radius with Flux for GitOps
  2. Configure Flux to manage your Radius application
  3. Deploy your Radius application using Flux

Prerequisites

  • Supported Kubernetes cluster
  • rad CLI
  • Radius environment
  • A remote Git repository (e.g., GitHub, GitLab, etc.) to store your application files
  • Flux CLI
  • Flux control plane components installed in your Kubernetes cluster

Step 1: Create a Git Repository

  1. Create a new directory for your application:

    mkdir radius-flux-app
    cd radius-flux-app
    
  2. Initialize a new Git repository and sync it with your remote repository:

    git init
    git add .
    git remote add origin <your-repo-url>
    

Step 2: Prepare Application for Deployment by Flux

  1. Create a new Bicep file named app.bicep in the radius-flux-app directory. This file will define your application resources. Here is an example of a simple application that deploys a demo container:

    // Import the set of Radius resources (Applications.*) into Bicep
    extension radius
    
    @description('The Radius environment name to deploy the application and resources to.')
    param environment string = 'default'
    
    resource env 'Applications.Core/environments@2023-10-01-preview' existing = {
      name: environment
    }
    
    resource app 'Applications.Core/applications@2023-10-01-preview' = {
      name: 'app'
      properties: {
        environment: env.id
      }
    }
    
    resource demo 'Applications.Core/containers@2023-10-01-preview' = {
      name: 'demo'
      properties: {
        application: app.id
        container: {
          image: 'ghcr.io/radius-project/samples/demo:latest'
          ports: {
            web: {
              containerPort: 3000
            }
          }
        }
      }
    }
    

    Next, we will create a configuration file in our repository to inform Radius about which Bicep files to deploy. This file is named radius-gitops-config.yaml and it will be created in the same directory as your app.bicep file.

    Create a new file named radius-gitops-config.yaml and add the following content:

    config:
      - name: app.bicep
        resourceGroup: default
    

    Finally, commit and push your changes to the Git repository:

    git add app.bicep radius-gitops-config.yaml
    git commit -m "Add Radius application and configuration for Flux"
    git push origin main
    

Step 3: Configure Flux to Manage Your Application

  1. Register your Git repository with Flux:

    flux create source git radius-flux-app \
      --url=<your-repo-url> \
      --branch=main
    

    Now, Flux will monitor your Git repository for changes and Radius will deploy the application automatically when changes are detected.

    After some time, you should be able to see the resources in your Kubernetes cluster:

    ❯ kubectl get pods -A
    ...
    NAMESPACE            NAME                                         READY   STATUS    RESTARTS        AGE
    default-app          demo-56d7fd6b64-q95sl                        1/1     Running   0               27s
    ...
    

    You can also use rad app graph to visualize the resources created by your application:

    ❯ rad app graph -a app
    Displaying application: app
    
    Name: demo (Applications.Core/containers)
    Connections: (none)
    Resources:
    demo (apps/Deployment)
    demo (core/Service)
    demo (core/ServiceAccount)
    demo (rbac.authorization.k8s.io/Role)
    demo (rbac.authorization.k8s.io/RoleBinding)
    

Step 5: Update Your Application

Now that your application is registered with Flux, you can make changes to your application definitions and push them to your Git repository. Flux and Radius will do the rest - automatically detecting the changes and deploying them to your Kubernetes cluster.

  1. Open app.bicep and make some changes to the application definition. For example, you can specify parameters and increase the number of replicas for the demo container:

    // Import the set of Radius resources (Applications.*) into Bicep
    extension radius
    
    @description('The Radius environment name to deploy the application and resources to.')
    param environment string
    
    @description('The number of replicas to deploy for the demo container.')
    param replicas string
    
    resource env 'Applications.Core/environments@2023-10-01-preview' existing = {
      name: environment
    }
    
    resource app 'Applications.Core/applications@2023-10-01-preview' = {
      name: 'app'
      properties: {
        environment: env.id
      }
    }
    
    resource demo 'Applications.Core/containers@2023-10-01-preview' = {
      name: 'demo'
      properties: {
        application: app.id
        container: {
          image: 'ghcr.io/radius-project/samples/demo:latest'
          ports: {
            web: {
              containerPort: 3000
            }
          }
        }
        extensions: [
          {
            kind: 'manualScaling'
            replicas: int(replicas)
          }
        ]
      }
    }
    
  2. Add a new file app.bicepparam to define the parameters for your application:

    using 'app.bicep'
    
    param environment = 'default'
    param replicas = '3'
    
  3. Update the radius-gitops-config.yaml file to include the new parameter file:

    config:
      - name: app.bicep
        params: app.bicepparam
        resourceGroup: default
    
  4. As before, commit and push your changes to the Git repository:

    git add app.bicep app.bicepparam radius-gitops-config.yaml
    git commit -m "Update application definition and parameters"
    git push origin main
    

    After some time (Flux needs to reconcile the Git repository), you should be able to see that the application has been scaled up to 3 replicas:

    ❯ kubectl get pods -A
    NAMESPACE            NAME                                         READY   STATUS    RESTARTS      AGE
    ...
    default-app          demo-56d7fd6b64-6zwj7                        1/1     Running   0             2m19s
    default-app          demo-56d7fd6b64-n9rqz                        1/1     Running   0             2m19s
    default-app          demo-56d7fd6b64-q95sl                        1/1     Running   0             13m
    ...
    

Done

Congratulations! You have successfully integrated Radius with Flux for GitOps. You can now manage your Radius applications using Git as the single source of truth.

Cleanup

To cleanup the resources created in this guide, you can update the radius-gitops-config.yaml to remove the Bicep file entries in the radius-gitops-config.yaml file.

Before:

config:
  - name: app.bicep
    params: app.bicepparam
    resourceGroup: default

After:

config: 
   # intentionally empty - no Bicep files to deploy.

Then, commit the changes:


```bash
rm app.bicep
rm app.bicepparam
git add app.bicep app.bicepparam radius-gitops-config.yaml
git commit -m "Remove application files"
git push origin main

After some time, you should see that the resources have been removed from your Kubernetes cluster.