GithubHelp home page GithubHelp logo

gitops-bridge-dev / terraform-helm-gitops-bridge Goto Github PK

View Code? Open in Web Editor NEW
11.0 2.0 12.0 26 KB

Terraform module for GitOps bridge

License: Apache License 2.0

HCL 95.55% Shell 4.45%
argo argocd automation gitops helm

terraform-helm-gitops-bridge's Introduction

gitops-bridge-argocd-bootstrap-terraform

Terraform module for gitops-bridge argocd bootstrap

It handles three aspect of ArgoCD bootstrap

  1. Installs an intial deployment of argocd, this deployment (gets replaced by argocd applicationset)
  2. Creates the ArgoCD cluster secret (including in-cluster)
  3. Creates the intial set App of Apps (addons, workloads, etc.)

To be use with gitops-bridge project, see example here

Usage

locals {
  name                   = "ex-${replace(basename(path.cwd), "_", "-")}"
  environment            = "dev"
  cluster_version        = "1.27"
  gitops_addons_url      = "https://github.com/gitops-bridge-dev/gitops-bridge-argocd-control-plane-template"
  gitops_addons_basepath = ""
  gitops_addons_path     = "bootstrap/control-plane/addons"
  gitops_addons_revision = "HEAD"

  oss_addons = {
    enable_argo_workflows = true
    enable_foo                                   = true # you can add any addon here, make sure to update the gitops repo with the corresponding application set
  }
  addons = merge(local.oss_addons, { kubernetes_version = local.cluster_version })

  addons_metadata = merge(
    {
      addons_repo_url      = local.gitops_addons_url
      addons_repo_basepath = local.gitops_addons_basepath
      addons_repo_path     = local.gitops_addons_path
      addons_repo_revision = local.gitops_addons_revision
    }
  )

  argocd_apps = {
    addons = file("${path.module}/bootstrap/addons.yaml")
    workloads = file("${path.module}/bootstrap/workloads.yaml")
  }

}

################################################################################
# GitOps Bridge: Bootstrap
################################################################################
module "gitops_bridge_bootstrap" {
  source = "gitops-bridge-dev/gitops-bridge/helm"

  cluster = {
    cluster_name = local.name
    environment  = local.environment
    metadata     = local.addons_metadata
    addons       = local.addons
  }
  apps = local.argocd_apps
}

Requirements

Name Version
terraform >= 1.0
helm >= 2.10.1
kubernetes >= 2.22.0

Providers

Name Version
helm >= 2.10.1
kubernetes >= 2.22.0

Modules

No modules.

Resources

Name Type
helm_release.argocd resource
helm_release.bootstrap resource
kubernetes_secret_v1.cluster resource

Inputs

Name Description Type Default Required
apps argocd app of apps to deploy any {} no
argocd argocd helm options any {} no
cluster argocd cluster secret any null no
create Create terraform resources bool true no
install Deploy argocd helm bool true no

Outputs

Name Description
apps ArgoCD apps
argocd Argocd helm release
cluster ArgoCD cluster

terraform-helm-gitops-bridge's People

Contributors

csantanapr avatar rodrigobersa avatar zioproto avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

terraform-helm-gitops-bridge's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.