# ArgoCD integration with replicated

**URL:** https://community.replicated.com/t/argocd-integration-with-replicated/1352
**Category:** How do I?
**Created:** [January 25, 2024, 7:14pm UTC](https://community.replicated.com/t/argocd-integration-with-replicated/1352 "2024-01-25T19:14:13Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![dmuley](https://yyz2.discourse-cdn.com/flex030/user_avatar/community.replicated.com/dmuley/32/572_2.png) [@dmuley](https://community.replicated.com/u/dmuley)
#### Post date: [January 25, 2024, 7:14pm UTC](https://community.replicated.com/t/argocd-integration-with-replicated/1352/1 "2024-01-25T19:14:13Z")

</div>

Hello Team,

Anyone integrated ArgoCD for pulling latest release from replicated? Any insights to use it for CICD ?

idea is to use Jenkins for CI CD and push releases to replicated and then another job will trigger and that will ssh server and pull and deploy,

I can deploy the using `kubectl kots upstream upgrade icedq -n default --deploy` but this may deploy the latest version directly no way to identify the latest version in replicated.

---

<div class="post-metadata">

### Author: ![salahalsaleh](https://yyz2.discourse-cdn.com/flex030/user_avatar/community.replicated.com/salahalsaleh/32/464_2.png) [@salahalsaleh](https://community.replicated.com/u/salahalsaleh)
#### Post date: [January 31, 2024, 4:16pm UTC](https://community.replicated.com/t/argocd-integration-with-replicated/1352/2 "2024-01-31T16:16:00Z")

</div>

Hi @dmuley,

You can use the `--deploy-version-label <version-label>` flag instead of `--deploy` to deploy a specific version associated with the provided label. You can combine that with the commit SHA for example in order to deploy the version associated with a particular commit.

For example:

Create and promote a release using the commit SHA as the version label:

```bash
replicated release create --yaml-dir=<manifests-dir> --promote='<channel-name>' --version=<commit-sha>

```

Deploy that release:

```bash
kubectl kots upstream upgrade icedq -n default --deploy-version-label <commit-sha>

```

Hope that helps.

---

<div class="post-metadata">

### Author: ![dmuley](https://yyz2.discourse-cdn.com/flex030/user_avatar/community.replicated.com/dmuley/32/572_2.png) [@dmuley](https://community.replicated.com/u/dmuley)
#### Post date: [January 31, 2024, 9:20pm UTC](https://community.replicated.com/t/argocd-integration-with-replicated/1352/4 "2024-01-31T21:20:45Z")

</div>

Got it, make sense. Thank you  
Dnyaneshwar M
