Skip to content

Commit

Permalink
Merge pull request #182 from nats-io/release/v0.4.5
Browse files Browse the repository at this point in the history
Prepare Release v0.4.5
  • Loading branch information
wallyqs authored May 8, 2019
2 parents d200914 + 286876e commit fd66bd4
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![License Apache 2.0](https://img.shields.io/badge/License-Apache2-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0)
[![Build Status](https://travis-ci.org/nats-io/nats-operator.svg?branch=master)](https://travis-ci.org/nats-io/nats-operator)
[![Version](https://d25lcipzij17d.cloudfront.net/badge.svg?id=go&type=5&v=0.4.4)](https://github.com/nats-io/nats-operator/releases/tag/v0.4.4)
[![Version](https://d25lcipzij17d.cloudfront.net/badge.svg?id=go&type=5&v=0.4.5)](https://github.com/nats-io/nats-operator/releases/tag/v0.4.5)

NATS Operator manages NATS clusters atop [Kubernetes][k8s-home], automating their creation and administration.

Expand Down Expand Up @@ -45,8 +45,8 @@ The operation mode must be chosen when installing NATS Operator and cannot be ch
To perform a namespace-scoped installation of NATS Operator in the Kubernetes cluster pointed at by the current context, you may run:

```console
$ kubectl apply -f https://github.com/nats-io/nats-operator/releases/download/v0.4.4/00-prereqs.yaml
$ kubectl apply -f https://github.com/nats-io/nats-operator/releases/download/v0.4.4/10-deployment.yaml
$ kubectl apply -f https://github.com/nats-io/nats-operator/releases/download/v0.4.5/00-prereqs.yaml
$ kubectl apply -f https://github.com/nats-io/nats-operator/releases/download/v0.4.5/10-deployment.yaml
```

This will, by default, install NATS Operator in the `default` namespace and observe `NatsCluster` resources created in the `default` namespace, alone.
Expand Down
2 changes: 1 addition & 1 deletion deploy/10-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
serviceAccountName: nats-operator
containers:
- name: nats-operator
image: connecteverything/nats-operator:0.4.4-v1alpha2
image: connecteverything/nats-operator:0.4.5-v1alpha2
imagePullPolicy: IfNotPresent
args:
- nats-operator
Expand Down
2 changes: 1 addition & 1 deletion example/example-nats-cluster-auth.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ spec:

# Defaults but can be customized to be a different image
reloaderImage: "connecteverything/nats-server-config-reloader"
reloaderImageTag: "0.2.2-v1alpha2"
reloaderImageTag: "0.4.5-v1alpha2"
reloaderImagePullPolicy: "IfNotPresent"
auth:
# Definition in JSON of the users permissions
Expand Down
4 changes: 2 additions & 2 deletions example/example-nats-cluster-metrics.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ metadata:
name: "nats-cluster-metrics"
spec:
size: 3
version: "1.3.0"
version: "1.4.1"
serverImage: "nats"
pod:
enableMetrics: true
metricsImage: "synadia/prometheus-nats-exporter"
metricsImageTag: "0.2.0"
metricsImageTag: "0.2.2"
4 changes: 2 additions & 2 deletions pkg/constants/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,10 @@ const (
// Default Docker Images
DefaultServerImage = "nats"
DefaultReloaderImage = "connecteverything/nats-server-config-reloader"
DefaultReloaderImageTag = "0.2.2-v1alpha2"
DefaultReloaderImageTag = "0.4.5-v1alpha2"
DefaultReloaderImagePullPolicy = "IfNotPresent"
DefaultMetricsImage = "synadia/prometheus-nats-exporter"
DefaultMetricsImageTag = "0.2.0"
DefaultMetricsImageTag = "0.2.2"
DefaultMetricsImagePullPolicy = "IfNotPresent"

// NatsBinaryPath is the path to the NATS binary inside the main container.
Expand Down

0 comments on commit fd66bd4

Please sign in to comment.