-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* CR-20911-app-proxy (#284) * bump app-proxy with security fixes * update app-proxy with security fix in autopilot * CR-20910 -- Fix gitops vulns (#285) Fix gitops vulns * feat: csdp-add-cluster chart templates update (#286) * appVersions (#288) * bump app-proxy (#289) Update kustomization.yaml * fix: argocd-manager sa token for openshift (#290) * Bump app-proxy (#291) Update kustomization.yaml * release 0.1.37 --------- Co-authored-by: Oleksandr Saulyak <[email protected]> Co-authored-by: Yaroslav Drachenko <[email protected]> Co-authored-by: mikhail-klimko <[email protected]> Co-authored-by: Andrii Shaforostov <[email protected]> Co-authored-by: Daniel Maizel <[email protected]>
- Loading branch information
1 parent
bcdef74
commit b531b91
Showing
19 changed files
with
259 additions
and
102 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 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 +1 @@ | ||
0.1.36 | ||
0.1.37 |
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 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,9 +1,17 @@ | ||
apiVersion: v2 | ||
name: csdp-add-cluster | ||
description: This helm chart adds a remote cluster to an existing Codefresh runtime | ||
|
||
type: application | ||
|
||
version: 0.2.0 | ||
|
||
appVersion: 0.7.0 | ||
version: 0.4.0 | ||
appVersion: 0.8.0 | ||
home: https://codefresh.io/ | ||
icon: https://avatars1.githubusercontent.com/u/11412079?v=3 | ||
sources: | ||
- https://github.com/codefresh-io/csdp-official/tree/main/add-cluster/helm | ||
maintainers: | ||
- name: codefresh | ||
url: https://codefresh-io.github.io/ | ||
dependencies: | ||
- name: cf-common | ||
repository: oci://quay.io/codefresh/charts | ||
version: 0.16.0 |
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 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 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,14 +1,16 @@ | ||
{{- if .Values.rbac.create }} | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRoleBinding | ||
metadata: | ||
name: {{ include "csdp-add-cluster.serviceAccount" . }}-role-binding | ||
name: {{ include "csdp-add-cluster.serviceAccountName" . }}-role-binding | ||
labels: | ||
{{- include "csdp-add-cluster.labels" . | nindent 4 }} | ||
roleRef: | ||
apiGroup: rbac.authorization.k8s.io | ||
kind: ClusterRole | ||
name: {{ include "csdp-add-cluster.serviceAccount" . }}-role | ||
name: {{ include "csdp-add-cluster.serviceAccountName" . }}-role | ||
subjects: | ||
- kind: ServiceAccount | ||
name: {{ include "csdp-add-cluster.serviceAccount" . }} | ||
name: {{ include "csdp-add-cluster.serviceAccountName" . }} | ||
namespace: {{ .Values.systemNamespace | default "kube-system" }} | ||
{{- end }} |
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 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 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 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,7 +1,27 @@ | ||
{{- if .Values.serviceAccount.create }} | ||
apiVersion: v1 | ||
kind: ServiceAccount | ||
metadata: | ||
name: {{ include "csdp-add-cluster.serviceAccount" . }} | ||
name: {{ include "csdp-add-cluster.serviceAccountName" . }} | ||
namespace: {{ .Values.systemNamespace | default "kube-system" }} | ||
labels: | ||
{{- include "csdp-add-cluster.labels" . | nindent 4 }} | ||
{{- with .Values.serviceAccount.annotations }} | ||
annotations: | ||
{{- toYaml . | nindent 4 }} | ||
{{- end }} | ||
{{- if .Values.serviceAccount.secret }} | ||
{{- if .Values.serviceAccount.secret.create }} | ||
secrets: | ||
- name: {{ include "csdp-add-cluster.serviceAccountName" . }}-sa-token | ||
--- | ||
apiVersion: v1 | ||
kind: Secret | ||
type: kubernetes.io/service-account-token | ||
metadata: | ||
name: {{ include "csdp-add-cluster.serviceAccountName" . }}-sa-token | ||
annotations: | ||
kubernetes.io/service-account.name: {{ include "csdp-add-cluster.serviceAccountName" . }} | ||
{{- end }} | ||
{{- end }} | ||
{{- end }} |
Oops, something went wrong.