Skip to content

Commit

Permalink
fix doc for v2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
veezhang committed Sep 22, 2021
1 parent 0985343 commit 57444cd
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 16 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Modify the file and change `replicas` from 3 to 5.
memory: "1Gi"
replicas: 5
image: vesoft/nebula-storaged
version: v2.0.1
version: v2.5.0
storageClaim:
resources:
requests:
Expand Down Expand Up @@ -101,7 +101,7 @@ Similarly we can decrease the size of the cluster from 5 back to 3 by changing t
memory: "1Gi"
replicas: 3
image: vesoft/nebula-storaged
version: v2.0.1
version: v2.5.0
storageClaim:
resources:
requests:
Expand Down
10 changes: 5 additions & 5 deletions charts/index.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ entries:
nebula-cluster:
- apiVersion: v2
appVersion: 0.1.0
created: "2021-07-20T16:38:43.161264382+08:00"
created: "2021-09-22T08:52:56.805094+08:00"
description: Nebula Cluster Helm chart for Kubernetes
digest: aa03c80a212414404e11aa1b026802b86f33063f9eaf2ea484b4195e0d301ecc
digest: f746717049f8e4135e26ca5a1ce723f5ee82293aed5b39573ea506cb0d6c039c
home: https://nebula-graph.io
keywords:
- kubernetes
Expand All @@ -29,9 +29,9 @@ entries:
nebula-operator:
- apiVersion: v2
appVersion: 0.1.0
created: "2021-07-20T16:38:43.162192859+08:00"
created: "2021-09-22T08:52:56.8058+08:00"
description: Nebula Operator Helm chart for Kubernetes
digest: 92ff3f3e6eda554ae4e3bdacdf9b5d95eaf2a2f12ab2d01a0bbc898dcb83fe21
digest: 7a8ff8bdb3c9eaff7bc4c4ab31cce853b58c80fa3107e4a9ae9cf773d6e43604
home: https://nebula-graph.io
keywords:
- kubernetes
Expand All @@ -50,4 +50,4 @@ entries:
urls:
- https://vesoft-inc.github.io/nebula-operator/charts/nebula-operator-0.1.0.tgz
version: 0.1.0
generated: "2021-07-20T16:38:43.160050416+08:00"
generated: "2021-09-22T08:52:56.804397+08:00"
Binary file modified charts/nebula-cluster-0.1.0.tgz
Binary file not shown.
2 changes: 1 addition & 1 deletion charts/nebula-cluster/values.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
nebula:
version: v2.0.1
version: v2.5.0
imagePullPolicy: Always
storageClassName: ""
schedulerName: default-scheduler # nebula-scheduler
Expand Down
Binary file modified charts/nebula-operator-0.1.0.tgz
Binary file not shown.
2 changes: 2 additions & 0 deletions charts/nebula-operator/crds/nebulacluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ spec:
type: object
spec:
properties:
enablePVReclaim:
type: boolean
graphd:
properties:
annotations:
Expand Down
6 changes: 3 additions & 3 deletions config/samples/apps_v1alpha1_nebulacluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ spec:
memory: "1Gi"
replicas: 1
image: vesoft/nebula-graphd
version: v2.0.1
version: v2.5.0
service:
type: NodePort
externalTrafficPolicy: Local
Expand All @@ -32,7 +32,7 @@ spec:
memory: "1Gi"
replicas: 1
image: vesoft/nebula-metad
version: v2.0.1
version: v2.5.0
storageClaim:
resources:
requests:
Expand All @@ -48,7 +48,7 @@ spec:
memory: "1Gi"
replicas: 3
image: vesoft/nebula-storaged
version: v2.0.1
version: v2.5.0
storageClaim:
resources:
requests:
Expand Down
2 changes: 1 addition & 1 deletion doc/user/custom_config.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ spec:
memory: "1Gi"
replicas: 1
image: vesoft/nebula-graphd
version: v2.0.1
version: v2.5.0
storageClaim:
resources:
requests:
Expand Down
2 changes: 1 addition & 1 deletion doc/user/nebula_cluster_helm_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ The following table lists is the configurable parameters of the chart and their
| Parameter | Description | Default |
|:---------|:-----------|:-------|
| `nameOverride` | Override the name of the chart | `nil` |
| `nebula.version` | Nebula version | `v2.0.1` |
| `nebula.version` | Nebula version | `v2.5.0` |
| `nebula.imagePullPolicy` | Nebula image pull policy | `Always` |
| `nebula.storageClassName` | PersistentVolume class, default to use the default StorageClass | `nil` |
| `nebula.schedulerName` | Scheduler for nebula component | `default-scheduler` |
Expand Down
6 changes: 3 additions & 3 deletions pkg/controller/nebulacluster/nebula_cluster_control_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ func newNebulaCluster() *v1alpha1.NebulaCluster {
},
},
Image: "vesoft/graphd",
Version: "v2.0.1",
Version: "v2.5.0",
},
},
Metad: &v1alpha1.MetadSpec{
Expand All @@ -186,7 +186,7 @@ func newNebulaCluster() *v1alpha1.NebulaCluster {
},
},
Image: "vesoft/metad",
Version: "v2.0.1",
Version: "v2.5.0",
},
},
Storaged: &v1alpha1.StoragedSpec{
Expand All @@ -199,7 +199,7 @@ func newNebulaCluster() *v1alpha1.NebulaCluster {
},
},
Image: "vesoft/storaged",
Version: "v2.0.1",
Version: "v2.5.0",
},
},
},
Expand Down

0 comments on commit 57444cd

Please sign in to comment.