Skip to content

Commit 62a957b

Browse files
Piyush Nimbalkarpiyush-nimbalkar
authored andcommitted
Adding portworx operator version 1.0.3 for catalog
Signed-off-by: Piyush Nimbalkar <piyush@portworx.com>
1 parent 00cf466 commit 62a957b

File tree

4 files changed

+576
-1
lines changed

4 files changed

+576
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ifeq ($(BUILD_TYPE),debug)
1515
BUILDFLAGS += -gcflags "-N -l"
1616
endif
1717

18-
RELEASE_VER := 1.0.0
18+
RELEASE_VER := 1.0.3
1919
BASE_DIR := $(shell git rev-parse --show-toplevel)
2020
GIT_SHA := $(shell git rev-parse --short HEAD)
2121
BIN := $(BASE_DIR)/bin
Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
apiVersion: apiextensions.k8s.io/v1beta1
2+
kind: CustomResourceDefinition
3+
metadata:
4+
name: storageclusters.core.libopenstorage.org
5+
spec:
6+
group: core.libopenstorage.org
7+
names:
8+
kind: StorageCluster
9+
listKind: StorageClusterList
10+
plural: storageclusters
11+
singular: storagecluster
12+
shortNames:
13+
- stc
14+
scope: Namespaced
15+
subresources:
16+
status: {}
17+
version: v1alpha1
18+
versions:
19+
- name: v1alpha1
20+
served: true
21+
storage: true
22+
validation:
23+
openAPIV3Schema:
24+
properties:
25+
apiVersion:
26+
type: string
27+
kind:
28+
type: string
29+
metadata: {}
30+
spec:
31+
properties:
32+
image:
33+
type: string
34+
imagePullPolicy:
35+
type: string
36+
imagePullSecret: {}
37+
secretsProvider: {}
38+
startPort: {}
39+
updateStrategy: {}
40+
revisionHistoryLimit: {}
41+
placement: {}
42+
kvdb:
43+
properties:
44+
internal:
45+
type: boolean
46+
endpoints: {}
47+
authSecret:
48+
type: string
49+
storage:
50+
properties:
51+
useAll: {}
52+
useAllWithPartitions: {}
53+
forceUseDisks: {}
54+
devices: {}
55+
journalDevice: {}
56+
systemMetadataDevice: {}
57+
dataStorageType: {}
58+
raidLevel: {}
59+
cloudStorage:
60+
properties:
61+
maxStorageNodes:
62+
type: int32
63+
maxStorageNodesPerZone:
64+
type: int32
65+
deviceSpecs: {}
66+
journalDeviceSpec:
67+
type: string
68+
systemMetadataDeviceSpec:
69+
type: string
70+
network:
71+
properties:
72+
dataInterface:
73+
type: string
74+
mgmtInterface:
75+
type: string
76+
env: {}
77+
status:
78+
properties:
79+
clusterName:
80+
type: string
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
packageName: portworx-certified
2+
channels:
3+
- name: alpha
4+
currentCSV: portworx-operator.v1.0.3

0 commit comments

Comments
 (0)