Skip to content

Latest commit

 

History

History
26 lines (22 loc) · 1.03 KB

README.md

File metadata and controls

26 lines (22 loc) · 1.03 KB

Test Application for Serverless Examples

This is a test Go application for serverless examples.

Pre-requisites:

  • Go is installed. Find the installation instructions here.
  • AWS CLI is installed and configured. Find the installation instructions here.
  • GoReleaser is installed. Find the installation instructions here

Apply ArgoCD application

The applications contains the claim and the deployment.

kubectl apply -f argocd-app.yaml

Navigate to the ArgoCD UI

Find the ArgoCD URL:

kubectl -n argocd get svc argo-cd-argocd-server -o jsonpath='{.status.loadBalancer.ingress[0].hostname}'

The username is admin and the password can be obtained by executing:

kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d

Sync the ArgoCD app and watch the lambda-processor app come up.

Lambda Processor App ArgoCD