-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Adding Marketplace deployment * Fixing app path definition * Testing https protocol for repoURL. * Updating project repos * Testing semver constraint for targetRevision * Using helm repo for Marketplace application * Fixing branch reference for values.yml * Bump chart version * Bumping marketplace helm chart version * Allowing RWX for PVC for better rolling update support * Adding image pull secrets reference * Updating service port * Bumping marketplace chart version. Updating service port --------- Co-authored-by: Chase 李 <chase@emiya.io>
- Loading branch information
Showing
4 changed files
with
65 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
--- | ||
apiVersion: argoproj.io/v1alpha1 | ||
kind: Application | ||
metadata: | ||
name: marketplace | ||
finalizers: | ||
- resources-finalizer.argocd.argoproj.io | ||
spec: | ||
destination: | ||
namespace: marketplace | ||
server: 'https://kubernetes.default.svc' | ||
sources: | ||
- repoURL: 'https://acm.cs.uic.edu/helm' | ||
targetRevision: 0.1.3 | ||
chart: 'marketplace' | ||
path: 'helm' | ||
helm: | ||
valueFiles: | ||
- $values/kubernetes/argocd/stacks/marketplace/values.yml | ||
- path: kubernetes/argocd/stacks/marketplace | ||
repoURL: 'git@github.com:acm-uic/IaC.git' | ||
targetRevision: feature/marketplace | ||
ref: values | ||
directory: | ||
recurse: true | ||
include: '*.yml' | ||
exclude: values.yml | ||
project: sigweb | ||
syncPolicy: | ||
automated: | ||
prune: true | ||
selfHeal: true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
apiVersion: argoproj.io/v1alpha1 | ||
kind: AppProject | ||
metadata: | ||
name: sigweb | ||
namespace: argocd | ||
spec: | ||
clusterResourceWhitelist: | ||
- group: '*' | ||
kind: '*' | ||
destinations: | ||
- namespace: '*' | ||
server: '*' | ||
sourceRepos: | ||
- 'git@github.com:acm-uic/IaC.git' | ||
- 'https://acm.cs.uic.edu/helm' | ||
roles: | ||
# A role which provides read-only access to all applications in the project | ||
- name: read-only | ||
description: Read-only privileges to sigweb | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
apiVersion: v1 | ||
kind: Namespace | ||
metadata: | ||
name: marketplace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
persistence: | ||
accessModes: | ||
- ReadWriteMany | ||
imagePullSecrets: | ||
- name: pull-creds |