Skip to content

Commit

Permalink
v1beta3 to v1
Browse files Browse the repository at this point in the history
  • Loading branch information
Chao Xu committed Jun 9, 2015
1 parent 3e7bcd1 commit c1f57ed
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions examples/celery-rabbitmq/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ The Celery task queue will need to communicate with the RabbitMQ broker. RabbitM
Use the file [`examples/celery-rabbitmq/rabbitmq-service.yaml`](rabbitmq-service.yaml):

```yaml
apiVersion: v1beta3
apiVersion: v1
kind: Service
metadata:
labels:
Expand Down Expand Up @@ -66,7 +66,7 @@ This service allows other pods to connect to the rabbitmq. To them, it will be s
A RabbitMQ broker can be turned up using the file [`examples/celery-rabbitmq/rabbitmq-controller.yaml`](rabbitmq-controller.yaml):

```yaml
apiVersion: v1beta3
apiVersion: v1
kind: ReplicationController
metadata:
labels:
Expand Down Expand Up @@ -103,7 +103,7 @@ Note that bringing up the pod includes pulling down a docker image, which may ta
Bringing up the celery worker is done by running `$ kubectl create -f examples/celery-rabbitmq/celery-controller.yaml`, which contains this:

```yaml
apiVersion: v1beta3
apiVersion: v1
kind: ReplicationController
metadata:
labels:
Expand Down Expand Up @@ -181,7 +181,7 @@ Flower is a web-based tool for monitoring and administrating Celery clusters. By
To bring up the frontend, run this command `$ kubectl create -f examples/celery-rabbitmq/flower-controller.yaml`. This controller is defined as so:

```yaml
apiVersion: v1beta3
apiVersion: v1
kind: ReplicationController
metadata:
labels:
Expand Down
2 changes: 1 addition & 1 deletion examples/celery-rabbitmq/celery-controller.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: v1beta3
apiVersion: v1
kind: ReplicationController
metadata:
labels:
Expand Down
2 changes: 1 addition & 1 deletion examples/celery-rabbitmq/flower-controller.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: v1beta3
apiVersion: v1
kind: ReplicationController
metadata:
labels:
Expand Down
2 changes: 1 addition & 1 deletion examples/celery-rabbitmq/rabbitmq-controller.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: v1beta3
apiVersion: v1
kind: ReplicationController
metadata:
labels:
Expand Down
2 changes: 1 addition & 1 deletion examples/celery-rabbitmq/rabbitmq-service.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: v1beta3
apiVersion: v1
kind: Service
metadata:
labels:
Expand Down

0 comments on commit c1f57ed

Please sign in to comment.