
The diurnal controller changes the number of replicas of a replication controller based on a list of times and replica counts. It is meant to be run under a replication controller.
9 lines
155 B
Docker
9 lines
155 B
Docker
FROM busybox
|
|
MAINTAINER Muhammed Uluyol "uluyol@google.com"
|
|
|
|
ADD dc /diurnal
|
|
|
|
RUN chown root:users /diurnal && chmod 755 /diurnal
|
|
|
|
ENTRYPOINT ["/diurnal"]
|