Coder Social home page Coder Social logo

gke-argocd's Introduction

Deploying ArgoCD on Kubernetes GKE

Terraform to deploy a single node GKE cluster with ArgoCD.

You can read the code in main which gives the most in depth explanation.

Argo does deployment management on Kubernetes! So this repository gives you the bootstrapping capabilities to manage your Kubernetes cluster once set up.

Remember to source you GCP credentials appropriately, using a service account https://cloud.google.com/iam/docs/keys-create-delete

There is a terrible workaround on line 58 which basically a timed wait condition for the GKE cluster to become ready. This is documented here hashicorp/terraform-provider-google#7823

The default time (5 min) after cluster creation should provide sufficient time for the api services to come up. Subsequent invocations you can set the timeout to be small or zero

terraform plan/apply -var wait_for_gke_cluster=1s

Note that the output should include information on argo's external load balancer IP, however I've found that this is not populated in TF output as it's part of the status of kubernetes service, not the spec.

argo_service_data = tolist([
  {
    "allocate_load_balancer_node_ports" = true
    "cluster_ip" = "10.84.4.130"
    "cluster_ips" = tolist([
      "10.84.4.130",
    ])
    "external_ips" = toset([])
    ...
])

To access the IP

kubectl -n argocd get service argocd-server -o json | jq -r '.status.loadBalancer.ingress[0].ip'

Your initial credentials are username: admin Password can be sourced

tf output -json argo_secret_output | jq .data.password

gke-argocd's People

Contributors

marcusbb avatar

Watchers

 avatar

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.