summaryrefslogtreecommitdiffstats
path: root/roles/lib_openshift/src/lib/replicationcontroller.py
blob: ae585a986d19a9079ff8fcab5a1f417165f1040d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# pylint: skip-file
# flake8: noqa


# pylint: disable=too-many-public-methods
class ReplicationController(DeploymentConfig):
    ''' Class to wrap the oc command line tools '''
    replicas_path = "spec.replicas"
    env_path = "spec.template.spec.containers[0].env"
    volumes_path = "spec.template.spec.volumes"
    container_path = "spec.template.spec.containers"
    volume_mounts_path = "spec.template.spec.containers[0].volumeMounts"

    def __init__(self, content):
        ''' Constructor for ReplicationController '''
        super(ReplicationController, self).__init__(content=content)