Skip to content
This repository has been archived by the owner on Jul 15, 2024. It is now read-only.

Commit

Permalink
Release v0.1.0
Browse files Browse the repository at this point in the history
Signed-off-by: Jonathan West <[email protected]>
  • Loading branch information
jgwest committed Apr 7, 2021
1 parent 8b30f13 commit 8100e6b
Show file tree
Hide file tree
Showing 8 changed files with 3,229 additions and 3,082 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ jobs:
# This version is verified to match a version consistent with the kustomize install yaml,
# by 'hack/verify-argo-cd-versions.sh'.
# BEGIN-ARGO-CD-VERSION
ref: v1.8.5
ref: v2.0.0
# END-ARGO-CD-VERSION
- name: Setup Golang
uses: actions/setup-go@v1
Expand Down
4 changes: 2 additions & 2 deletions docs/Geting-Started.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ The ApplicationSet controller *must* be installed into the same namespace as the
Presuming that Argo CD is installed into the `argocd` namespace, run the following command:

```bash
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj-labs/applicationset/master/manifests/install.yaml
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj-labs/applicationset/v0.1.0/manifests/install.yaml
```

Once installed, the ApplicationSet controller requires no additional setup.
Expand All @@ -37,7 +37,7 @@ You may install both the ApplicationSet controller and the latest stable Argo CD

```bash
kubectl create namespace argocd
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj-labs/applicationset/master/manifests/install-with-argo-cd.yaml
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj-labs/applicationset/v0.1.0/manifests/install-with-argo-cd.yaml
```

Once installed, follow the [Argo CD Getting Started](https://argoproj.github.io/argo-cd/getting_started/) to access Argo CD and log-in to the Web UI.
Expand Down
2 changes: 1 addition & 1 deletion hack/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ make manifests

echo
echo "*** performing release commit"
git commit -s -m "Release ${TARGET_TAG}" VERSION manifests/
git commit -s -m "Release ${TARGET_TAG}" VERSION manifests/ docs/ hack/ .github/
git tag ${TARGET_TAG}

echo
Expand Down
2 changes: 1 addition & 1 deletion hack/verify-argo-cd-versions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# To adopt a new version of Argo CD:
# 1) Update this value to the GitHub tag of the target 'argoproj/argo-cd' release (example: 'v1.8.4').
# 2) Fix the errors that are reported below (by editing the version string in the file reported in the error)
TARGET_ARGO_CD_VERSION=v1.8.5
TARGET_ARGO_CD_VERSION=v2.0.0

# Extract the Argo CD repository string from ci-build.yaml, which SHOULD contain the target Argo CD version
VERSION_FROM_CI_BUILD=$( awk '/BEGIN-ARGO-CD-VERSION/,/END-ARGO-CD-VERSION/' .github/workflows/ci-build.yaml )
Expand Down
4 changes: 2 additions & 2 deletions manifests/base/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ kind: Kustomization

images:
- name: argoprojlabs/argocd-applicationset
newName: argoprojlabs/argocd-applicationset
newTag: latest
newName: quay.io/argocdapplicationset/argocd-applicationset
newTag: v0.1.0

namespace: argocd

Expand Down
6,293 changes: 3,220 additions & 3,073 deletions manifests/install-with-argo-cd.yaml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion manifests/install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1536,7 +1536,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.namespace
image: argoprojlabs/argocd-applicationset:latest
image: quay.io/argocdapplicationset/argocd-applicationset:v0.1.0
imagePullPolicy: Always
name: argocd-applicationset-controller
volumeMounts:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ kind: Kustomization
namespace: argocd

resources:
- https://raw.githubusercontent.com/argoproj/argo-cd/v1.8.5/manifests/install.yaml
- https://raw.githubusercontent.com/argoproj/argo-cd/v2.0.0/manifests/install.yaml
- ../base
- ../crds

0 comments on commit 8100e6b

Please sign in to comment.