Switch to github.com/golang/dep for vendoring
Signed-off-by: Mrunal Patel <mrunalp@gmail.com>
This commit is contained in:
parent
d6ab91be27
commit
8e5b17cf13
15431 changed files with 3971413 additions and 8881 deletions
36
vendor/k8s.io/kubernetes/examples/k8petstore/redis/Dockerfile
generated
vendored
Normal file
36
vendor/k8s.io/kubernetes/examples/k8petstore/redis/Dockerfile
generated
vendored
Normal file
|
@ -0,0 +1,36 @@
|
|||
# Copyright 2016 The Kubernetes Authors.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
#
|
||||
# Redis Dockerfile
|
||||
#
|
||||
# https://github.com/dockerfile/redis
|
||||
#
|
||||
|
||||
# Pull base image.
|
||||
FROM redis
|
||||
|
||||
# Define mountable directories.
|
||||
VOLUME ["/data"]
|
||||
|
||||
# Define working directory.
|
||||
WORKDIR /data
|
||||
|
||||
ADD etc_redis_redis.conf /etc/redis/redis.conf
|
||||
|
||||
# Print redis configs and start.
|
||||
# CMD "redis-server /etc/redis/redis.conf"
|
||||
|
||||
# Expose ports.
|
||||
EXPOSE 6379
|
46
vendor/k8s.io/kubernetes/examples/k8petstore/redis/etc_redis_redis.conf
generated
vendored
Normal file
46
vendor/k8s.io/kubernetes/examples/k8petstore/redis/etc_redis_redis.conf
generated
vendored
Normal file
|
@ -0,0 +1,46 @@
|
|||
pidfile /var/run/redis.pid
|
||||
port 6379
|
||||
tcp-backlog 511
|
||||
timeout 0
|
||||
tcp-keepalive 0
|
||||
loglevel verbose
|
||||
syslog-enabled yes
|
||||
databases 1
|
||||
save 1 1
|
||||
save 900 1
|
||||
save 300 10
|
||||
save 60 10000
|
||||
stop-writes-on-bgsave-error yes
|
||||
rdbcompression no
|
||||
rdbchecksum yes
|
||||
dbfilename dump.rdb
|
||||
dir /data
|
||||
slave-serve-stale-data no
|
||||
slave-read-only yes
|
||||
repl-disable-tcp-nodelay no
|
||||
slave-priority 100
|
||||
maxmemory <bytes>
|
||||
appendonly yes
|
||||
appendfilename "appendonly.aof"
|
||||
appendfsync everysec
|
||||
no-appendfsync-on-rewrite no
|
||||
auto-aof-rewrite-percentage 100
|
||||
auto-aof-rewrite-min-size 1
|
||||
aof-load-truncated yes
|
||||
lua-time-limit 5000
|
||||
slowlog-log-slower-than 10000
|
||||
slowlog-max-len 128
|
||||
latency-monitor-threshold 0
|
||||
notify-keyspace-events "KEg$lshzxeA"
|
||||
list-max-ziplist-entries 512
|
||||
list-max-ziplist-value 64
|
||||
set-max-intset-entries 512
|
||||
zset-max-ziplist-entries 128
|
||||
zset-max-ziplist-value 64
|
||||
hll-sparse-max-bytes 3000
|
||||
activerehashing yes
|
||||
client-output-buffer-limit normal 0 0 0
|
||||
client-output-buffer-limit slave 256mb 64mb 60
|
||||
client-output-buffer-limit pubsub 32mb 8mb 60
|
||||
hz 10
|
||||
aof-rewrite-incremental-fsync yes
|
Loading…
Add table
Add a link
Reference in a new issue