This file contains hidden or 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
placement: | |
nodeAffinity: | |
requiredDuringSchedulingIgnoredDuringExecution: | |
nodeSelectorTerms: | |
- matchExpressions: | |
- key: px/enabled | |
operator: NotIn | |
values: | |
- "false" | |
- key: node-role.kubernetes.io/master |
This file contains hidden or 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
apiVersion: v1 | |
kind: Namespace | |
metadata: | |
name: minio | |
--- | |
kind: StorageClass | |
apiVersion: storage.k8s.io/v1 | |
metadata: | |
name: minio-sc | |
provisioner: kubernetes.io/portworx-volume |
This file contains hidden or 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
kind: StorageClass | |
apiVersion: storage.k8s.io/v1beta1 | |
metadata: | |
name: px-repl | |
provisioner: kubernetes.io/portworx-volume | |
parameters: | |
repl: "3" | |
priority_io: "high" | |
io_profile: "db" | |
allowVolumeExpansion: true |
This file contains hidden or 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
kind: StorageClass | |
apiVersion: storage.k8s.io/v1beta1 | |
metadata: | |
name: px-ha-sc | |
provisioner: kubernetes.io/portworx-volume | |
allowVolumeExpansion: true | |
parameters: | |
repl: "3" | |
io_profile: "db_remote" | |
io_priority: "high" |
This file contains hidden or 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
kind: StorageClass | |
apiVersion: storage.k8s.io/v1 | |
metadata: | |
name: px-sharedv4-sc | |
provisioner: kubernetes.io/portworx-volume | |
parameters: | |
repl: "2" | |
sharedv4: "true" | |
--- | |
kind: PersistentVolumeClaim |
This file contains hidden or 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
apiVersion: stork.libopenstorage.org/v1alpha1 | |
kind: ApplicationClone | |
metadata: | |
name: clone-db | |
namespace: kube-system | |
spec: | |
sourceNamespace: default | |
destinationNamespace: migrostest | |
selectors: | |
app: webrbacdb |
This file contains hidden or 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
apiVersion: autopilot.libopenstorage.org/v1alpha1 | |
kind: AutopilotRule | |
metadata: | |
name: minio-resize | |
spec: | |
##### selector filters the objects affected by this rule given labels | |
selector: | |
matchLabels: | |
app: minio |
This file contains hidden or 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
apiVersion: autopilot.libopenstorage.org/v1alpha1 | |
kind: AutopilotRule | |
metadata: | |
name: pool-expand-till-300 | |
spec: | |
enforcement: required | |
##### conditions are the symptoms to evaluate. | |
conditions: | |
expressions: | |
# pool size is less than 400 GiB |
This file contains hidden or 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
apiVersion: autopilot.libopenstorage.org/v1alpha1 | |
kind: AutopilotRule | |
metadata: | |
name: postgres-resize | |
spec: | |
##### selector filters the objects affected by this rule given labels | |
selector: | |
matchLabels: | |
app: postgres | |
pollInterval: 3 |
This file contains hidden or 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
kind: StorageClass | |
apiVersion: storage.k8s.io/v1beta1 | |
metadata: | |
name: px-postgres-sc | |
provisioner: kubernetes.io/portworx-volume | |
parameters: | |
repl: "3" | |
io_profile: "db" | |
priority_io: "high" | |
allowVolumeExpansion: true |
NewerOlder