If you haven't stored raw kubernetes YAML files in your GitOps repository, you most probably used some sort of tooling that generates YAML files, for example tanka, helmfile and cdk8s.
Argo CD doesn't include these tools "natively" but gives a way to integrate with them using Config Management Plugins.
This enables you to write manifests in any tool and CMPs would process them and provide raw manifests to Argo CD.
Cloud Development Kit for Kubernetes (CDK8S) is a tool where you define manifests in one of the following programming languages: Typescript, JavaScript, Golang, Python or Java.
To properly integrate CDK8S with Argo CD, we need to write configuration for init
and generate
in CMP. In this case init
would install dependencies for selected
programming language. For example, Typescript requires npm install
while Python pipenv update
.
Argo CD needs the final output in raw YAML, so the below command is common for all languages to generate
.
cdk8s synth --stdout
This tells us that Argo CD would need cdk8s
CLI, CLI for the programming language used, CLI for dependency management tool, programming language used to run CDK8S (NodeJS). In order for this to work, we would need a Docker image with all of these tooling available, while also make sure that only the required tooling is available inside the image.
At the time of writing this, there is no unified place with support of all available programming languages in CMP.
We have prepared an open source repository with all available programming languages supported in CDK8S. You can visit it at https://github.com/akuity/cdk8s-cmp to know more.
We also encourage you to use the Docker images on ghcr.io/akuity/cdk8s-cmp-<typescript/go/python/java>
. See all available versions here
To integrate with an existing workflow, you first would need to attach the container to repo-server
and then inject the plugin definition.
spec:
containers:
- name: my-plugin
command:
- /var/run/argocd/argocd-cmp-server
image: 'ghcr.io/akuity/cdk8s-cmp-<go/typescript/java/python>:latest'
securityContext:
runAsNonRoot: true
runAsUser: 999
volumeMounts:
- mountPath: /var/run/argocd
name: var-files
- mountPath: /home/argocd/cmp-server/plugins
name: plugins
- mountPath: /home/argocd/cmp-server/config/plugin.yaml
subPath: plugin.yaml
name: my-plugin-config
- mountPath: /tmp
name: cmp-tmp
...
volumes:
- configMap:
name: my-plugin-config
name: my-plugin-config
- emptyDir: {}
name: cmp-tmp
...
You would need to inject plugin configuration from ConfigMap. Here is the example plugin.yaml for Golang.
apiVersion: v1
kind: ConfigMap
metadata:
name: my-plugin-config
namespace: argocd
data:
plugin.yaml: |
apiVersion: argoproj.io/v1alpha1
kind: ConfigManagementPlugin
metadata:
name: cdk8s-go
spec:
version: v1.0
init:
command: [cdk8s]
args: [import]
generate:
command: [cdk8s, synth]
args: [--stdout]
discover:
fileName: "*.go"
If you have your Argo CD instance on Akuity Platform then you are just a few clicks away to integrate the CDK8S config management plugin of your choice of programming language.
Simply go to instance Settings
> Manifest Generation
and click on "Use one of pre-defined plugins". Then install the CDK8S plugin you want to use.
We hope that this integration will make your life easier.
We’re excited to announce that Kargo v0.9.0 is here, delivering a highly anticipated shift in how you define and execute promotion processes. This release…...
October 01, 2024In the constantly evolving landscape of software development, continuous integration (CI) and continuous delivery (CD) have been foundational methodologies for…...
September 16, 2024The Akuity Platform has been updated once again with new features and improvements. Here’s a quick summary of what has been added and how it can boost your…...