Skip to content

Commit

Permalink
Merge pull request #206 from IBM/upgrade-release-0.1.0
Browse files Browse the repository at this point in the history
upgrade version to 0.1.0
  • Loading branch information
hirokuni-kitahara authored Dec 10, 2020
2 parents 0872668 + 6f43c04 commit 95fcb1b
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion COMPONENT_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.5
0.1.0
4 changes: 2 additions & 2 deletions docs/ACM/README_DISABLE_ISHIELD_PROTECTION_ACM_ENV.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ You will use `policy-integrity` to disable Integrity Shield protection in an ACM
name: integrity-shield-server
spec:
logger:
image: quay.io/open-cluster-management/integrity-shield-logging:0.0.5
image: quay.io/open-cluster-management/integrity-shield-logging:0.1.0
server:
image: quay.io/open-cluster-management/integrity-shield-server:0.0.5
image: quay.io/open-cluster-management/integrity-shield-server:0.1.0
```
3. Create signature annotation in `policy-integrity.yaml` as below.
Expand Down
4 changes: 2 additions & 2 deletions docs/ACM/README_ENABLE_ISHIELD_PROTECTION_ACM_ENV.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,9 +200,9 @@ oc create ns <custom namespace>
name: integrity-shield-server
spec:
logger:
image: quay.io/open-cluster-management/integrity-shield-logging:0.0.5
image: quay.io/open-cluster-management/integrity-shield-logging:0.1.0
server:
image: quay.io/open-cluster-management/integrity-shield-server:0.0.5
image: quay.io/open-cluster-management/integrity-shield-server:0.1.0
```
Commit the above configuration change in `policy-integrity.yaml` to `policy-collection` GitHub repository.
Expand Down
4 changes: 2 additions & 2 deletions integrity-shield-operator/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# limitations under the License.
#
# Current Operator version
VERSION ?= 0.0.5
VERSION ?= 0.1.0
# Default bundle image tag
BUNDLE_IMG ?= controller-bundle:$(VERSION)
# Options for 'bundle-build'
Expand All @@ -27,7 +27,7 @@ endif
BUNDLE_METADATA_OPTS ?= $(BUNDLE_CHANNELS) $(BUNDLE_DEFAULT_CHANNEL)

# Image URL to use all building/pushing image targets
IMG ?= quay.io/open-cluster-management/integrity-shield-operator:0.0.5
IMG ?= quay.io/open-cluster-management/integrity-shield-operator:0.1.0
# Produce CRDs that work back to Kubernetes 1.11 (no version conversion)
CRD_OPTIONS ?= "crd:trivialVersions=true"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ metadata:
capabilities: Basic Install
operators.operatorframework.io/builder: operator-sdk-v1.1.0
operators.operatorframework.io/project_layout: go.kubebuilder.io/v2
name: integrity-shield-operator.v0.0.5
name: integrity-shield-operator.v0.1.0
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -240,7 +240,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.namespace
image: quay.io/open-cluster-management/integrity-shield-operator:0.0.5
image: quay.io/open-cluster-management/integrity-shield-operator:0.1.0
imagePullPolicy: Always
name: manager
resources:
Expand Down Expand Up @@ -303,4 +303,4 @@ spec:
provider:
name: IBM
url: https://github.com/ibm/integrity-enforcer
version: 0.0.5
version: 0.1.0
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ kind: Kustomization
images:
- name: controller
newName: quay.io/open-cluster-management/integrity-shield-operator
newTag: 0.0.5
newTag: 0.1.0
4 changes: 2 additions & 2 deletions integrity-shield-operator/resources/default-ishield-cr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ spec:
enabled: false
endpoint: http://sample-http-server:8093/api
esSecretName: es-tls-certs
image: quay.io/open-cluster-management/integrity-shield-logging:0.0.5
image: quay.io/open-cluster-management/integrity-shield-logging:0.1.0
imagePullPolicy: Always
name: forwarder
resources:
Expand Down Expand Up @@ -91,7 +91,7 @@ spec:
chartBaseUrl: http://sample-chart-repo-server/charts
contextLogEnabled: true
shieldPolicyReloadSec: 10
image: quay.io/open-cluster-management/integrity-shield-server:0.0.5
image: quay.io/open-cluster-management/integrity-shield-server:0.1.0
imagePullPolicy: Always
name: server
port: 8443
Expand Down
6 changes: 3 additions & 3 deletions ishield-build.conf
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ REGISTRY=quay.io/open-cluster-management
LOCAL_REGISTRY=localhost:5000
BUNDLE_REGISTRY=quay.io/open-cluster-management

ISHIELD_VERSION=0.0.5
VERSION=0.0.5
PREV_VERSION=0.0.4
ISHIELD_VERSION=0.1.0
VERSION=0.1.0
PREV_VERSION=0.0.5

ISHIELD_IMAGE=integrity-shield-server
ISHIELD_LOGGING=integrity-shield-logging
Expand Down
2 changes: 1 addition & 1 deletion scripts/install_shield.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ if [ -z "$ISHIELD_REPO_ROOT" ]; then
exit 1
fi

IMG=quay.io/open-cluster-management/integrity-shield-operator:0.0.5
IMG=quay.io/open-cluster-management/integrity-shield-operator:0.1.0
SHIELD_OP_DIR=${ISHIELD_REPO_ROOT}"/integrity-shield-operator/"

echo ""
Expand Down
2 changes: 1 addition & 1 deletion shield/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@
package version

var (
Version = "v0.0.5"
Version = "v0.1.0"
)

0 comments on commit 95fcb1b

Please sign in to comment.