Skip to content

Commit

Permalink
Create 1.9.2 release branch
Browse files Browse the repository at this point in the history
  • Loading branch information
pure-jliao committed Nov 3, 2022
1 parent 35994f5 commit b895c48
Show file tree
Hide file tree
Showing 10 changed files with 2,127 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Expand Up @@ -10,9 +10,9 @@ before_install:
script:
- |
echo "${DOCKER_PASSWORD}" | docker login -u "${DOCKER_USER}" --password-stdin
if [ "${TRAVIS_BRANCH}" == "px-rel-1.9.1" ]; then
export DOCKER_HUB_OPERATOR_TAG=1.9.1-dev
export DOCKER_HUB_OPERATOR_TEST_TAG=1.9.1-dev
if [ "${TRAVIS_BRANCH}" == "px-rel-1.9.2" ]; then
export DOCKER_HUB_OPERATOR_TAG=1.9.2-dev
export DOCKER_HUB_OPERATOR_TEST_TAG=1.9.2-dev
else
export DOCKER_HUB_OPERATOR_TAG=`git rev-parse --short HEAD`
export DOCKER_HUB_OPERATOR_TEST_TAG=`git rev-parse --short HEAD`
Expand All @@ -21,7 +21,7 @@ script:
if [ "${TRAVIS_PULL_REQUEST}" == "false" ]; then
make deploy;
make integration-test-deploy;
if [ "${TRAVIS_BRANCH}" == "px-rel-1.9.1" ]; then
if [ "${TRAVIS_BRANCH}" == "px-rel-1.9.2" ]; then
make bundle catalog
fi
fi
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Expand Up @@ -28,7 +28,7 @@ ifndef DOCKER_HUB_REGISTRY_IMG
$(warning DOCKER_HUB_REGISTRY_IMG not defined, using '$(DOCKER_HUB_REGISTRY_IMG)' instead)
endif
ifndef BASE_REGISTRY_IMG
BASE_REGISTRY_IMG := docker.io/portworx/px-operator-registry:1.9.0
BASE_REGISTRY_IMG := docker.io/portworx/px-operator-registry:1.9.1
$(warning BASE_REGISTRY_IMG not defined, using '$(BASE_REGISTRY_IMG)' instead)
endif

Expand Down Expand Up @@ -56,7 +56,7 @@ ifeq ($(BUILD_TYPE),debug)
BUILDFLAGS += -gcflags "-N -l"
endif

RELEASE_VER := 1.9.1
RELEASE_VER := 1.9.2
BASE_DIR := $(shell git rev-parse --show-toplevel)
GIT_SHA := $(shell git rev-parse --short HEAD)
BIN := $(BASE_DIR)/bin
Expand Down
1,418 changes: 1,418 additions & 0 deletions deploy/olm-catalog/portworx/1.9.2/core_v1_storagecluster_crd.yaml

Large diffs are not rendered by default.

157 changes: 157 additions & 0 deletions deploy/olm-catalog/portworx/1.9.2/core_v1_storagenode_crd.yaml
@@ -0,0 +1,157 @@
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
name: storagenodes.core.libopenstorage.org
spec:
group: core.libopenstorage.org
names:
kind: StorageNode
listKind: StorageNodeList
plural: storagenodes
singular: storagenode
shortNames:
- sn
scope: Namespaced
versions:
- name: v1
served: true
storage: true
subresources:
status: {}
additionalPrinterColumns:
- name: ID
type: string
description: The corresponding Kubernetes node name for the storage node
jsonPath: .status.nodeUid
- name: Status
type: string
description: The status of the storage node
jsonPath: .status.phase
- name: Version
type: string
description: The version of the storage node
jsonPath: .spec.version
- name: Age
type: date
description: The age of the storage cluster
jsonPath: .metadata.creationTimestamp
schema:
openAPIV3Schema:
type: object
properties:
spec:
type: object
description: The desired behavior of the storage node. Currently changing the spec does
not affect the actual storage node in the cluster. Eventually spec in StorageNode will
override the spec from StorageCluster so that configuration can be overridden at node
level.
properties:
version:
type: string
description: Version of the storage driver on the node.
cloudStorage:
type: object
description: Details of storage on the node for cloud environments.
properties:
driveConfigs:
type: array
description: List of cloud drive configs for the storage node.
items:
type: object
properties:
type:
type: string
description: Type of cloud drive.
sizeInGiB:
type: integer
format: int64
minimum: 0
description: Size of cloud drive in GiB.
iops:
type: integer
format: int64
minimum: 0
description: IOPS required from the cloud drive.
options:
type: object
x-kubernetes-preserve-unknown-fields: true
description: Additional options for the cloud drive.
status:
type: object
description: Most recently observed status of the storage node. The data may not be up
to date.
properties:
nodeUid:
type: string
description: Unique ID of the storage node.
phase:
type: string
description: Phase of the StorageNode is a simple, high-level summary of where
the StorageNode is in its lifecycle. The condition array contains more detailed
information about the state of the node.
network:
type: object
description: Contains network information used by the storage node
properties:
dataIP:
type: string
description: IP address used by the storage driver for data traffic.
mgmtIP:
type: string
description: IP address used by the storage driver for management traffic.
storage:
type: object
description: Contains details of the status of storage for the node
properties:
totalSize:
type: string
description: Cumulative total size of all storage pools on the node.
usedSize:
type: string
description: Cumulative used size of all storage pools on the node.
conditions:
type: array
description: Contains details for the current condition of this storage node.
items:
type: object
properties:
type:
type: string
description: Type of the condition.
status:
type: string
description: Status of the condition.
reason:
type: string
description: Reason is a unique one-word reason about the current state
of the cluster.
message:
type: string
description: Message is the human readable message indicating details about the
current state of the cluster.
lastTransitionTime:
type: string
format: date-time
description: Time at which the condition changed.
geography:
type: object
description: Contains topology information for the storage node.
properties:
region:
type: string
description: Region in which the storage node is placed.
zone:
type: string
description: Zone in which the storage node is placed.
rack:
type: string
description: Rack on which the storage node is placed.
- name: v1alpha1
served: false
storage: false
subresources:
status: {}
schema:
openAPIV3Schema:
type: object
x-kubernetes-preserve-unknown-fields: true

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions deploy/olm-catalog/portworx/portworx.package.yaml
@@ -1,7 +1,7 @@
packageName: portworx-certified
channels:
- name: alpha
currentCSV: portworx-operator.v1.9.1
currentCSV: portworx-operator.v1.9.2
- name: stable
currentCSV: portworx-operator.v1.9.1
currentCSV: portworx-operator.v1.9.2
defaultChannel: stable
2 changes: 1 addition & 1 deletion deploy/operator.yaml
Expand Up @@ -20,7 +20,7 @@ spec:
spec:
containers:
- name: portworx-operator
image: portworx/px-operator:1.9.1-dev
image: portworx/px-operator:1.9.2-dev
imagePullPolicy: Always
command:
- /operator
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Expand Up @@ -22,7 +22,7 @@ require (
github.com/urfave/cli v1.22.2
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 // indirect
golang.org/x/sys v0.0.0-20220429233432-b5fbb4746d32 // indirect
golang.org/x/tools v0.1.12 // indirect
golang.org/x/tools v0.2.0 // indirect
golang.org/x/xerrors v0.0.0-20220411194840-2f41105eb62f // indirect
google.golang.org/grpc v1.36.0
gopkg.in/yaml.v2 v2.4.0
Expand Down
1 change: 0 additions & 1 deletion go.sum
Expand Up @@ -1726,7 +1726,6 @@ golang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod h1:6SW0HCj/g11FgYtHl
golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f/go.mod h1:5qLYkcX4OjUUV8bRuDixDT3tpyyb+LUpUlRWLxfhWrs=
golang.org/x/lint v0.0.0-20200130185559-910be7a94367/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY=
golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY=
golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5 h1:2M3HP5CCK1Si9FQhwnzYhXdG6DXeebvUHFpre8QvbyI=
golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY=
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 h1:VLliZ0d+/avPrXXH+OakdXhpJuEoBZuwh1m2j7U6Iug=
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY=
Expand Down
2 changes: 1 addition & 1 deletion vendor/modules.txt
Expand Up @@ -286,7 +286,7 @@ golang.org/x/text/unicode/norm
golang.org/x/text/width
# golang.org/x/time v0.0.0-20201208040808-7e3f01d25324
golang.org/x/time/rate
# golang.org/x/tools v0.1.12 => golang.org/x/tools v0.1.11
# golang.org/x/tools v0.2.0 => golang.org/x/tools v0.1.11
## explicit
golang.org/x/tools/go/ast/astutil
golang.org/x/tools/imports
Expand Down

0 comments on commit b895c48

Please sign in to comment.