Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgrade version to v0.7.0 #127

Merged
merged 1 commit into from
Nov 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ The architecture diagram is as follows:

Install quickly kube-events into your kubernetes cluster with the following commands:
```bash
kubectl apply -f https://raw.githubusercontent.com/kubesphere/kube-events/master/config/bundle.yaml
kubectl apply -f https://raw.githubusercontent.com/kubesphere/kube-events/master/config/crs/bundle.yaml
kubectl apply -f https://raw.githubusercontent.com/kubesphere/kube-events/release-0.7/config/bundle.yaml
kubectl apply -f https://raw.githubusercontent.com/kubesphere/kube-events/release-0.7/config/crs/bundle.yaml
```

Or install it by [helm chart](./helm/README.md).
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
latest
v0.7.0
2 changes: 1 addition & 1 deletion config/bundle.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5909,7 +5909,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.namespace
image: kubesphere/kube-events-operator:latest
image: kubesphere/kube-events-operator:v0.7.0
name: events-operator
ports:
- containerPort: 9443
Expand Down
4 changes: 2 additions & 2 deletions config/crs/bundle.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ metadata:
name: kube-events-exporter
namespace: kubesphere-logging-system
spec:
image: kubesphere/kube-events-exporter:latest
image: kubesphere/kube-events-exporter:v0.7.0
resources: {}
sinks:
stdout: {}
Expand Down Expand Up @@ -893,7 +893,7 @@ metadata:
name: kube-events-ruler
namespace: kubesphere-logging-system
spec:
image: kubesphere/kube-events-ruler:latest
image: kubesphere/kube-events-ruler:v0.7.0
replicas: 2
resources: {}
sinks:
Expand Down
4 changes: 2 additions & 2 deletions config/crs/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ patchesStrategicMerge:
images:
- name: exporter
newName: kubesphere/kube-events-exporter
newTag: latest
newTag: v0.7.0
- name: ruler
newName: kubesphere/kube-events-ruler
newTag: latest
newTag: v0.7.0
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
2 changes: 1 addition & 1 deletion config/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ configurations:
images:
- name: operator
newName: kubesphere/kube-events-operator
newTag: latest
newTag: v0.7.0
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
4 changes: 2 additions & 2 deletions helm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: kube-events
description: provides easy kube-events definitions for event exporting, filtering and alerting.
icon:
type: application
version: 0.4.2
appVersion: 0.6.0
version: 0.4.3
appVersion: 0.7.0
source:
- https://github.com/kubesphere/kube-events
keywords:
Expand Down
Loading