forked from argoproj/argo-helm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
64 changed files
with
1,908 additions
and
932 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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,6 +1,16 @@ | ||
apiVersion: v1 | ||
appVersion: "1.2.4" | ||
description: A Helm chart for Argo-CD | ||
description: A Helm chart for ArgoCD, a declarative, GitOps continuous delivery tool for Kubernetes. | ||
name: argo-cd | ||
version: 0.7.2 | ||
version: 1.0.0 | ||
home: https://github.com/argoproj/argo-helm | ||
icon: https://raw.githubusercontent.com/argoproj/argo/master/argo.png | ||
keywords: | ||
- argoproj | ||
- argocd | ||
- gitops | ||
maintainers: | ||
- name: alexec | ||
- name: alexmt | ||
- name: jessesuen | ||
- name: seanson |
Large diffs are not rendered by default.
Oops, something went wrong.
Empty file.
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 |
---|---|---|
@@ -1,13 +1,15 @@ | ||
In order to access the server UI you have the following options: | ||
|
||
1. kubectl port-forward svc/argocd-server -n argocd 8080:443 | ||
1. kubectl port-forward service/argo-cd-argocd-server -n argocd 8080:443 | ||
|
||
and then open the browser on http://localhost:8080 and accept the certificate | ||
|
||
2. enable ingress and check the first option ssl passthrough: | ||
https://github.com/argoproj/argo-cd/blob/master/docs/operator-manual/ingress.md#option-1-ssl-passthrough | ||
2. enable ingress in the values file `service.ingress.enabled` and either | ||
- Add the annotation for ssl passthrough: https://github.com/argoproj/argo-cd/blob/master/docs/operator-manual/ingress.md#option-1-ssl-passthrough | ||
- Add the `insecure: ""` flag to `server.extraArgs` in the values file and terminate SSL at your ingress: https://github.com/argoproj/argo-cd/blob/master/docs/operator-manual/ingress.md#option-2-multiple-ingress-objects-and-hosts | ||
|
||
|
||
After reaching the UI the first time you can login with username: admin and the password will be the | ||
name of the server pod. You can get the pod name by running: | ||
|
||
kubectl get pods -n argocd -l app.kubernetes.io/name={{ include "argo-cd.name" . }}-server -o name | cut -d'/' -f 2 | ||
kubectl get pods -n argocd -l app.kubernetes.io/name={{ include "argo-cd.name" . }}-server -o name | cut -d'/' -f 2 |
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
51 changes: 0 additions & 51 deletions
51
charts/argo-cd/templates/argocd-application-controller-deployment.yaml
This file was deleted.
Oops, something went wrong.
19 changes: 0 additions & 19 deletions
19
charts/argo-cd/templates/argocd-application-controller-metrics-service.yaml
This file was deleted.
Oops, something went wrong.
17 changes: 0 additions & 17 deletions
17
charts/argo-cd/templates/argocd-application-controller-service.yaml
This file was deleted.
Oops, something went wrong.
8 changes: 4 additions & 4 deletions
8
...d-application-controller-clusterrole.yaml → ...d-application-controller/clusterrole.yaml
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
21 changes: 21 additions & 0 deletions
21
charts/argo-cd/templates/argocd-application-controller/clusterrolebinding.yaml
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 @@ | ||
{{- if .Values.controller.clusterAdminAccess.enabled }} | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRoleBinding | ||
metadata: | ||
name: {{ template "argo-cd.controller.fullname" . }} | ||
labels: | ||
app.kubernetes.io/name: {{ include "argo-cd.name" . }}-{{ .Values.controller.name }} | ||
helm.sh/chart: {{ include "argo-cd.chart" . }} | ||
app.kubernetes.io/instance: {{ .Release.Name }} | ||
app.kubernetes.io/managed-by: {{ .Release.Service }} | ||
app.kubernetes.io/part-of: {{ include "argo-cd.name" . }} | ||
app.kubernetes.io/component: {{ .Values.controller.name }} | ||
roleRef: | ||
apiGroup: rbac.authorization.k8s.io | ||
kind: ClusterRole | ||
name: {{ template "argo-cd.controller.fullname" . }} | ||
subjects: | ||
- kind: ServiceAccount | ||
name: {{ template "argo-cd.controllerServiceAccountName" . }} | ||
namespace: {{ .Release.Namespace }} | ||
{{- end }} |
Oops, something went wrong.