-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2028 from NCEAS/feature-1984-3.1.0-release-prep
updated readme, checklist and examples for 3.1.0/chart-2.1 .0 release
- Loading branch information
Showing
8 changed files
with
856 additions
and
501 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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Creates a persistent volume for use by metacat | ||
# | ||
# This should be done only one time, separately from the helm install/upgrade cycle | ||
# | ||
apiVersion: v1 | ||
kind: PersistentVolume | ||
metadata: | ||
# See https://github.com/DataONEorg/k8s-cluster/blob/main/storage/storage.md#dataone-volume-naming-conventions | ||
# cephs-{release}-{function}-{instance}, where {release} usually = {namespace} | ||
# | ||
## Use your own release name | ||
name: &pv-name cephfs-releasename-metacat-varmetacat | ||
spec: | ||
accessModes: | ||
- ReadWriteMany | ||
capacity: | ||
storage: 100Gi | ||
csi: | ||
driver: cephfs.csi.ceph.com | ||
nodeStageSecretRef: | ||
# Use your own secret name | ||
name: csi-cephfs-releasename-secret | ||
# Use your own namespace where above secret is created | ||
namespace: ceph-csi-cephfs | ||
volumeAttributes: | ||
# Use your own clusterID, fsName, rootPath etc. here | ||
clusterID: 8aa4d4a0-a209-11ea-baf5-ffc787bfc812 | ||
fsName: cephfs | ||
rootPath: /volumes/k8ssubvolgroup/k8ssubvol/58cda964-ce10-4ff9-8242-983da0fd0da3/repos/name/metacat | ||
staticVolume: "true" | ||
volumeHandle: *pv-name | ||
persistentVolumeReclaimPolicy: Retain | ||
## Use your own storage class | ||
storageClassName: csi-cephfs-sc | ||
volumeMode: Filesystem |
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,35 @@ | ||
# Creates a persistent volume for use by MetacatUI | ||
# | ||
# This should be done only one time, separately from the helm install/upgrade cycle | ||
# | ||
apiVersion: v1 | ||
kind: PersistentVolume | ||
metadata: | ||
# See https://github.com/DataONEorg/k8s-cluster/blob/main/storage/storage.md#dataone-volume-naming-conventions | ||
# cephs-{release}-{function}-{instance}, where {release} usually = {namespace} | ||
# | ||
## Use your own release name | ||
name: &pv-name cephfs-releasename-metacatui | ||
spec: | ||
accessModes: | ||
- ReadWriteMany | ||
capacity: | ||
storage: 1Gi | ||
csi: | ||
driver: cephfs.csi.ceph.com | ||
nodeStageSecretRef: | ||
# Use your own secret name | ||
name: csi-cephfs-releasename-secret | ||
# Use your own namespace where above secret is created | ||
namespace: ceph-csi-cephfs | ||
volumeAttributes: | ||
# Use your own clusterID, fsName, rootPath etc. here | ||
clusterID: 8aa4d4a0-a209-11ea-baf5-ffc787bfc812 | ||
fsName: cephfs | ||
rootPath: /volumes/k8ssubvolgroup/k8ssubvol/58cda964-ce10-4ff9-8242-983da0fd0da3/repos/name/metacatui | ||
staticVolume: "true" | ||
volumeHandle: *pv-name | ||
persistentVolumeReclaimPolicy: Retain | ||
## Use your own storage class | ||
storageClassName: csi-cephfs-sc | ||
volumeMode: Filesystem |
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,37 @@ | ||
# Creates a persistent volume for use by postgresql | ||
# | ||
# This should be done only one time, separately from the helm install/upgrade cycle | ||
# | ||
apiVersion: v1 | ||
kind: PersistentVolume | ||
metadata: | ||
# See https://github.com/DataONEorg/k8s-cluster/blob/main/storage/storage.md#dataone-volume-naming-conventions | ||
# cephs-{release}-{function}-{instance}, where {release} usually = {namespace} | ||
# | ||
## Use your own release name | ||
name: &pv-name cephfs-releasename-metacat-postgresdata | ||
labels: | ||
metacatVolumeName: *pv-name | ||
spec: | ||
accessModes: | ||
- ReadWriteOnce | ||
capacity: | ||
storage: 10Gi | ||
csi: | ||
driver: cephfs.csi.ceph.com | ||
nodeStageSecretRef: | ||
# Use your own secret name | ||
name: csi-cephfs-releasename-secret | ||
# Use your own namespace where above secret is created | ||
namespace: ceph-csi-cephfs | ||
volumeAttributes: | ||
# Use your own clusterID, fsName, rootPath etc. here | ||
clusterID: 8aa4d4a0-a209-11ea-baf5-ffc787bfc812 | ||
fsName: cephfs | ||
rootPath: /volumes/k8ssubvolgroup/k8ssubvol/58cda964-ce10-4ff9-8242-983da0fd0da3/repos/name/postgresql | ||
staticVolume: "true" | ||
volumeHandle: *pv-name | ||
persistentVolumeReclaimPolicy: Retain | ||
## Use your own storage class | ||
storageClassName: csi-cephfs-sc | ||
volumeMode: Filesystem |
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,24 @@ | ||
# Creates a persistent volume claim for use by postgresql | ||
# | ||
# This should be done only one time, separately from the helm install/upgrade cycle | ||
# | ||
# NOTE: ensure that a PersistentVolume has already been created before creating | ||
# the PersistentVolumeClaim! | ||
# | ||
apiVersion: v1 | ||
kind: PersistentVolumeClaim | ||
metadata: | ||
## Use your own release name | ||
name: releasename-metacat-postgresql-0 | ||
## Use your own namespace | ||
namespace: mynamespace | ||
spec: | ||
accessModes: | ||
- ReadWriteOnce | ||
## Use your own release name. Note must match the name of the PersistentVolume | ||
volumeName: cephfs-releasename-metacat-postgresdata | ||
resources: | ||
requests: | ||
storage: 1000Gi | ||
## Use your own storage class | ||
storageClassName: csi-cephfs-sc |
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