Skip to content

Commit

Permalink
Fixed helm installation failure
Browse files Browse the repository at this point in the history
Signed-off-by: ming.tang <[email protected]>
  • Loading branch information
tangming1996 committed Nov 8, 2023
1 parent b8ec263 commit 5ad27aa
Show file tree
Hide file tree
Showing 24 changed files with 9,297 additions and 21 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
*.dll
*.so
*.dylib
*.DS_Store

# Test binary, built with `go test -c`
*.test
Expand Down
Binary file added build/helm/sedna.tgz
Binary file not shown.
2 changes: 1 addition & 1 deletion build/helm/sedna/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ version: 0.1.0
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: v0.4.3
appVersion: v0.6.0

dependencies:
- name: kb
Expand Down
5 changes: 3 additions & 2 deletions build/helm/sedna/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,14 @@ Visit https://github.com/kubeedge/sedna for more information.
```
$ git clone https://github.com/kubeedge/sedna.git
$ cd sedna
$ helm install sedna ./build/helm/sedna
$ kubectl create namespace sedna
$ helm install sedna --namespace sedna ./build/helm/sedna
```

## Uninstall

```
$ helm uninstall sedna
$ helm uninstall sedna -n sedna
```

## Update CRDs
Expand Down
2 changes: 1 addition & 1 deletion build/helm/sedna/charts/gm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ version: 0.1.0
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: v0.4.3
appVersion: v0.6.0
2 changes: 1 addition & 1 deletion build/helm/sedna/charts/gm/values.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
image: kubeedge/sedna-gm:v0.4.3
image: kubeedge/sedna-gm:v0.6.0
resources:
requests:
memory: 32Mi
Expand Down
2 changes: 1 addition & 1 deletion build/helm/sedna/charts/kb/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ version: 0.1.0
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: v0.4.3
appVersion: v0.6.0
2 changes: 1 addition & 1 deletion build/helm/sedna/charts/kb/values.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
image: kubeedge/sedna-kb:v0.4.3
image: kubeedge/sedna-kb:v0.6.0
resources:
requests:
memory: 256Mi
Expand Down
2 changes: 1 addition & 1 deletion build/helm/sedna/charts/lc/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ version: 0.1.0
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: v0.4.3
appVersion: v0.6.0
2 changes: 1 addition & 1 deletion build/helm/sedna/charts/lc/templates/daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
spec:
containers:
- name: lc
image: kubeedge/sedna-lc:v0.4.3
image: {{ .Values.image }}
env:
- name: GM_ADDRESS
value: gm.sedna:9000
Expand Down
2 changes: 1 addition & 1 deletion build/helm/sedna/charts/lc/values.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
image: kubeedge/sedna-lc:v0.4.3
image: kubeedge/sedna-lc:v0.6.0
resources:
requests:
memory: 32Mi
Expand Down
2 changes: 1 addition & 1 deletion build/helm/sedna/crds/sedna.io_datasets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.4.1
controller-gen.kubebuilder.io/version: v0.6.2
creationTimestamp: null
name: datasets.sedna.io
spec:
Expand Down
Loading

0 comments on commit 5ad27aa

Please sign in to comment.