-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: haorenfsa <[email protected]>
- Loading branch information
Showing
49 changed files
with
95 additions
and
1,772 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 |
---|---|---|
|
@@ -18,6 +18,9 @@ jobs: | |
uses: azure/setup-helm@v1 | ||
with: | ||
version: v3.4.0 | ||
- name: Add dependency chart repos | ||
run: | | ||
helm repo add cert-manager https://charts.jetstack.io | ||
- name: Set up chart-testing | ||
uses: helm/[email protected] | ||
|
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 |
---|---|---|
|
@@ -24,10 +24,13 @@ jobs: | |
uses: azure/setup-helm@v1 | ||
with: | ||
version: v3.4.0 | ||
- name: Add dependency chart repos | ||
run: | | ||
helm repo add cert-manager https://charts.jetstack.io | ||
- name: Set up chart-testing | ||
uses: helm/[email protected] | ||
|
||
- name: Run chart-testing (lint) | ||
run: ct lint --all --config ct.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
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
dependencies: | ||
- name: cert-manager | ||
repository: https://charts.jetstack.io | ||
version: v1.5.3 | ||
digest: sha256:ded312c59e9aee73e5dc268bad53029e6d7187d6ce17219b8b5d2b0ca3d0c577 | ||
generated: "2024-11-19T17:22:07.833644+08:00" |
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 |
---|---|---|
|
@@ -26,6 +26,14 @@ version: 1.1.3 | |
# It is recommended to use it with quotes. | ||
appVersion: "1.1.3" | ||
|
||
dependencies: | ||
- name: cert-manager | ||
version: 1.5.3 | ||
repository: https://charts.jetstack.io | ||
condition: cert-manager.enabled | ||
tags: | ||
- cert-manager | ||
|
||
maintainers: | ||
- name: zilliztech | ||
email: [email protected] | ||
|
Binary file not shown.
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,11 +0,0 @@ | ||
# check and install the dependencies when enabled, this need an extra service account with privileged clusterroles | ||
installDependencies: | ||
enable: true | ||
serviceAccount: | ||
# serviceAccount.create -- Specifies whether a service account should be created | ||
create: true | ||
# serviceAccount.annotations -- Annotations to add to the service account | ||
annotations: {} | ||
# serviceAccount.name -- The name of the service account to use. | ||
# If not set and create is true, a name is generated using the fullname template | ||
name: "milvus-dep-sa" | ||
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
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{{- if .Values.enableWebhook -}} | ||
apiVersion: cert-manager.io/v1 | ||
kind: Certificate | ||
metadata: | ||
name: '{{ include "chart.fullname" . }}-serving-cert' | ||
namespace: {{ .Release.Namespace }} | ||
spec: | ||
dnsNames: | ||
- milvus-operator-webhook-service.{{ .Release.Namespace }}.svc | ||
- milvus-operator-webhook-service.{{ .Release.Namespace }}.svc.cluster.local | ||
issuerRef: | ||
kind: Issuer | ||
name: '{{ include "chart.fullname" . }}-selfsigned-issuer' | ||
secretName: '{{ include "chart.fullname" . }}-webhook-cert' | ||
--- | ||
apiVersion: cert-manager.io/v1 | ||
kind: Issuer | ||
metadata: | ||
name: '{{ include "chart.fullname" . }}-selfsigned-issuer' | ||
namespace: {{ .Release.Namespace }} | ||
spec: | ||
selfSigned: {} | ||
{{- end -}} |
Oops, something went wrong.