kolla-ansible/k8s/replication/nova-compute-replication.yaml
Ryan Hallisey 8229c1f6c3 Start and stop scripts are outdated after Kubernetes update
Kubernetes no longer uses 'kubecfg', but rather 'kubectl'.
Therefore, the way that pods and services are being created
needs to be changed.

In order to create a pod, the parameter 'kind' needs to be set
to 'pod' in the yaml file and the api version specified.

The stop script now reads from k8s/{pod,service,replication}/ in order
to stop all the started pods, services, and replication controllers.

Change-Id: Ibd39fa402e9df883df83272c3aefbb69009dfbd2
2015-01-05 23:26:19 +00:00

44 lines
1.1 KiB
YAML

apiVersion: v1beta1
desiredState:
podTemplate:
desiredState:
manifest:
containers:
- name: nova-compute
image: kollaglue/fedora-rdo-nova-compute
ports:
- containerPort: 12000
hostPort: 12000
privileged: true
env:
- name: DB_ROOT_PASSWORD
value: password
- name: NOVA_DB_PASSWORD
value: novadbpassword
- name: KEYSTONE_ADMIN_TOKEN
value: ADMINTOKEN
- name: nova-network
image: kollaglue/fedora-rdo-nova-network
ports:
- containerPort: 12001
hostPort: 12001
privileged: true
env:
- name: DB_ROOT_PASSWORD
value: password
- name: NOVA_DB_PASSWORD
value: novadbpassword
- name: KEYSTONE_ADMIN_TOKEN
value: ADMINTOKEN
id: nova-compute
version: v1beta1
labels:
name: nova-compute
replicaSelector:
name: nova-compute
replicas: 6
id: nova-compute
kind: ReplicationController
labels:
name: nova-compute