From a1a2f8b893d724dcc843854a5e5a36a49cba02ef Mon Sep 17 00:00:00 2001 From: Chris Love Date: Sat, 18 Jun 2016 15:16:14 -0600 Subject: [PATCH] Work on intial deployment (#44) * updating for deployment * more dockers, and custom C* build * more work on deployment --- .../docker/cassandra-debian-custom/Dockerfile | 65 ++ .../cassandra-debian-custom/build-local.sh | 7 + .../docker/cassandra-debian-custom/build.sh | 41 + .../files/cassandra.yaml | 989 ++++++++++++++++++ .../files/kubernetes-cassandra.jar | Bin 0 -> 9823 bytes .../cassandra-debian-custom/files/logback.xml | 13 + .../files/ready-probe.sh | 6 + .../cassandra-debian-custom/files/run.sh | 104 ++ .../docker/google-debian-openjdk8/Dockerfile | 43 + .../google-debian-openjdk8/build-local.sh | 7 + .../docker/google-debian-openjdk8/build.sh | 41 + .../google-debian-openjdk8/files/java.list | 2 + pet-race-devops/docker/py3numpy/Dockerfile | 11 +- .../docker/py3numpy/build-local.sh | 7 + pet-race-devops/docker/py3numpy/build.sh | 40 +- pet-race-devops/docker/py3numpy/repositories | 2 - pet-race-devops/gce/k8s-1k.sh | 11 +- .../k8s/cassandra/cassandra-petset-gce.yaml | 3 +- 18 files changed, 1373 insertions(+), 19 deletions(-) create mode 100644 pet-race-devops/docker/cassandra-debian-custom/Dockerfile create mode 100755 pet-race-devops/docker/cassandra-debian-custom/build-local.sh create mode 100755 pet-race-devops/docker/cassandra-debian-custom/build.sh create mode 100644 pet-race-devops/docker/cassandra-debian-custom/files/cassandra.yaml create mode 100644 pet-race-devops/docker/cassandra-debian-custom/files/kubernetes-cassandra.jar create mode 100644 pet-race-devops/docker/cassandra-debian-custom/files/logback.xml create mode 100644 pet-race-devops/docker/cassandra-debian-custom/files/ready-probe.sh create mode 100644 pet-race-devops/docker/cassandra-debian-custom/files/run.sh create mode 100644 pet-race-devops/docker/google-debian-openjdk8/Dockerfile create mode 100755 pet-race-devops/docker/google-debian-openjdk8/build-local.sh create mode 100755 pet-race-devops/docker/google-debian-openjdk8/build.sh create mode 100644 pet-race-devops/docker/google-debian-openjdk8/files/java.list create mode 100755 pet-race-devops/docker/py3numpy/build-local.sh delete mode 100644 pet-race-devops/docker/py3numpy/repositories diff --git a/pet-race-devops/docker/cassandra-debian-custom/Dockerfile b/pet-race-devops/docker/cassandra-debian-custom/Dockerfile new file mode 100644 index 0000000..390cbb0 --- /dev/null +++ b/pet-race-devops/docker/cassandra-debian-custom/Dockerfile @@ -0,0 +1,65 @@ +# Copyright 2016 The Kubernetes Authors All rights reserved. +# +# 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. + +FROM gcr.io/aronchick-apollobit/google-debian-openjdk8:v1.0 + +ENV CASS_VERSION=3.7-SNAPSHOT CASS_DIR=/opt/cassandra PATH=$PATH:/opt/cassandra/bin + +ADD files / + +RUN apt-get update \ + && apt-get -qq -y install --no-install-recommends curl python-minimal \ + localepurge \ + && curl "https://storage.googleapis.com/kubernetes-cassandra/apache-cassandra-${CASS_VERSION}-bin.tar.gz" | tar xz \ + && mv apache-cassandra-${CASS_VERSION} ${CASS_DIR} \ + && find /opt/cassandra/lib/sigar-bin/ -type f | grep -v ibsigar-x86-linux.so | xargs rm \ + && rm -rf ${CASS_DIR}/lib/licenses ${CASS_DIR}/javadoc \ + && chmod a+rx /run.sh /ready-probe.sh \ + && mkdir -p /cassandra_data/data \ + && mv /logback.xml /cassandra.yaml $CASS_DIR/conf/ \ + && mv /kubernetes-cassandra.jar ${CASS_DIR}/lib/ \ + && apt-get -y purge curl localepurge \ + && apt-get clean \ + && rm -rf \ + doc \ + man \ + info \ + locale \ + /var/lib/apt/lists/* \ + /var/log/* \ + /var/cache/debconf/* \ + common-licenses \ + ~/.bashrc \ + /etc/systemd \ + /lib/lsb \ + /lib/udev \ + /usr/share/doc/ \ + /usr/share/doc-base/ \ + /usr/share/man/ \ + /tmp/* + +VOLUME ["/cassandra_data/data"] + +# 7000: intra-node communication +# 7001: TLS intra-node communication +# 7199: JMX +# 9042: CQL +# 9160: thrift service not included cause it is going away +EXPOSE 7000 7001 7199 9042 + +# Not able to do this until https://github.com/kubernetes/kubernetes/issues/2630 is resolved +# if you are using attached storage +# USER cassandra + +CMD ["/dumb-init", "/bin/bash", "/run.sh"] diff --git a/pet-race-devops/docker/cassandra-debian-custom/build-local.sh b/pet-race-devops/docker/cassandra-debian-custom/build-local.sh new file mode 100755 index 0000000..b9742a3 --- /dev/null +++ b/pet-race-devops/docker/cassandra-debian-custom/build-local.sh @@ -0,0 +1,7 @@ +#!/bin/bash +VERSION=v1.0 +REPO=10.100.179.231:5000 +DOCKER="${REPO}/cassandra:${VERSION}" + +docker build -t ${DOCKER} . +docker push ${DOCKER} diff --git a/pet-race-devops/docker/cassandra-debian-custom/build.sh b/pet-race-devops/docker/cassandra-debian-custom/build.sh new file mode 100755 index 0000000..b0fdeab --- /dev/null +++ b/pet-race-devops/docker/cassandra-debian-custom/build.sh @@ -0,0 +1,41 @@ +#!/bin/bash +VERSION=v1.0 + +usage() { + echo "Usage: $0 [-p]" 1>&2; + echo " -p PROJECT_ID -d" + exit 1; +} + +if [ $? != 0 ] ; then usage ; fi + +while getopts "p:hd" o; do + case "${o}" in + p) + PROJECT_ID=${OPTARG} + ;; + d) + DEPLOY=true + ;; + h) + usage + ;; + *) + usage + ;; + esac +done +shift $((OPTIND-1)) +if [ -z "$PROJECT_ID" ]; then + usage +fi + +REPO=gcr.io/$PROJECT_ID +DOCKER="${REPO}/${PWD##*/}:${VERSION}" + +docker build -t ${DOCKER} . + +echo $DEPLOY +if [ "$DEPLOY" ]; then + gcloud docker push ${DOCKER} +fi diff --git a/pet-race-devops/docker/cassandra-debian-custom/files/cassandra.yaml b/pet-race-devops/docker/cassandra-debian-custom/files/cassandra.yaml new file mode 100644 index 0000000..002c4d2 --- /dev/null +++ b/pet-race-devops/docker/cassandra-debian-custom/files/cassandra.yaml @@ -0,0 +1,989 @@ +# Cassandra storage config YAML + +# NOTE: +# See http://wiki.apache.org/cassandra/StorageConfiguration for +# full explanations of configuration directives +# /NOTE + +# The name of the cluster. This is mainly used to prevent machines in +# one logical cluster from joining another. +cluster_name: 'Test Cluster' + +# This defines the number of tokens randomly assigned to this node on the ring +# The more tokens, relative to other nodes, the larger the proportion of data +# that this node will store. You probably want all nodes to have the same number +# of tokens assuming they have equal hardware capability. +# +# If you leave this unspecified, Cassandra will use the default of 1 token for legacy compatibility, +# and will use the initial_token as described below. +# +# Specifying initial_token will override this setting on the node's initial start, +# on subsequent starts, this setting will apply even if initial token is set. +# +# If you already have a cluster with 1 token per node, and wish to migrate to +# multiple tokens per node, see http://wiki.apache.org/cassandra/Operations +num_tokens: 256 + +# Triggers automatic allocation of num_tokens tokens for this node. The allocation +# algorithm attempts to choose tokens in a way that optimizes replicated load over +# the nodes in the datacenter for the replication strategy used by the specified +# keyspace. +# +# The load assigned to each node will be close to proportional to its number of +# vnodes. +# +# Only supported with the Murmur3Partitioner. +# allocate_tokens_for_keyspace: KEYSPACE + +# initial_token allows you to specify tokens manually. While you can use # it with +# vnodes (num_tokens > 1, above) -- in which case you should provide a +# comma-separated list -- it's primarily used when adding nodes # to legacy clusters +# that do not have vnodes enabled. +# initial_token: + +# See http://wiki.apache.org/cassandra/HintedHandoff +# May either be "true" or "false" to enable globally +hinted_handoff_enabled: true +# When hinted_handoff_enabled is true, a black list of data centers that will not +# perform hinted handoff +# hinted_handoff_disabled_datacenters: +# - DC1 +# - DC2 +# this defines the maximum amount of time a dead host will have hints +# generated. After it has been dead this long, new hints for it will not be +# created until it has been seen alive and gone down again. +max_hint_window_in_ms: 10800000 # 3 hours + +# Maximum throttle in KBs per second, per delivery thread. This will be +# reduced proportionally to the number of nodes in the cluster. (If there +# are two nodes in the cluster, each delivery thread will use the maximum +# rate; if there are three, each will throttle to half of the maximum, +# since we expect two nodes to be delivering hints simultaneously.) +hinted_handoff_throttle_in_kb: 1024 + +# Number of threads with which to deliver hints; +# Consider increasing this number when you have multi-dc deployments, since +# cross-dc handoff tends to be slower +max_hints_delivery_threads: 2 + +# Directory where Cassandra should store hints. +# If not set, the default directory is $CASSANDRA_HOME/data/hints. +# hints_directory: /var/lib/cassandra/hints + +# How often hints should be flushed from the internal buffers to disk. +# Will *not* trigger fsync. +hints_flush_period_in_ms: 10000 + +# Maximum size for a single hints file, in megabytes. +max_hints_file_size_in_mb: 128 + +# Compression to apply to the hint files. If omitted, hints files +# will be written uncompressed. LZ4, Snappy, and Deflate compressors +# are supported. +#hints_compression: +# - class_name: LZ4Compressor +# parameters: +# - + +# Maximum throttle in KBs per second, total. This will be +# reduced proportionally to the number of nodes in the cluster. +batchlog_replay_throttle_in_kb: 1024 + +# Authentication backend, implementing IAuthenticator; used to identify users +# Out of the box, Cassandra provides org.apache.cassandra.auth.{AllowAllAuthenticator, +# PasswordAuthenticator}. +# +# - AllowAllAuthenticator performs no checks - set it to disable authentication. +# - PasswordAuthenticator relies on username/password pairs to authenticate +# users. It keeps usernames and hashed passwords in system_auth.credentials table. +# Please increase system_auth keyspace replication factor if you use this authenticator. +# If using PasswordAuthenticator, CassandraRoleManager must also be used (see below) +authenticator: AllowAllAuthenticator + +# Authorization backend, implementing IAuthorizer; used to limit access/provide permissions +# Out of the box, Cassandra provides org.apache.cassandra.auth.{AllowAllAuthorizer, +# CassandraAuthorizer}. +# +# - AllowAllAuthorizer allows any action to any user - set it to disable authorization. +# - CassandraAuthorizer stores permissions in system_auth.permissions table. Please +# increase system_auth keyspace replication factor if you use this authorizer. +authorizer: AllowAllAuthorizer + +# Part of the Authentication & Authorization backend, implementing IRoleManager; used +# to maintain grants and memberships between roles. +# Out of the box, Cassandra provides org.apache.cassandra.auth.CassandraRoleManager, +# which stores role information in the system_auth keyspace. Most functions of the +# IRoleManager require an authenticated login, so unless the configured IAuthenticator +# actually implements authentication, most of this functionality will be unavailable. +# +# - CassandraRoleManager stores role data in the system_auth keyspace. Please +# increase system_auth keyspace replication factor if you use this role manager. +role_manager: CassandraRoleManager + +# Validity period for roles cache (fetching granted roles can be an expensive +# operation depending on the role manager, CassandraRoleManager is one example) +# Granted roles are cached for authenticated sessions in AuthenticatedUser and +# after the period specified here, become eligible for (async) reload. +# Defaults to 2000, set to 0 to disable caching entirely. +# Will be disabled automatically for AllowAllAuthenticator. +roles_validity_in_ms: 2000 + +# Refresh interval for roles cache (if enabled). +# After this interval, cache entries become eligible for refresh. Upon next +# access, an async reload is scheduled and the old value returned until it +# completes. If roles_validity_in_ms is non-zero, then this must be +# also. +# Defaults to the same value as roles_validity_in_ms. +# roles_update_interval_in_ms: 2000 + +# Validity period for permissions cache (fetching permissions can be an +# expensive operation depending on the authorizer, CassandraAuthorizer is +# one example). Defaults to 2000, set to 0 to disable. +# Will be disabled automatically for AllowAllAuthorizer. +permissions_validity_in_ms: 2000 + +# Refresh interval for permissions cache (if enabled). +# After this interval, cache entries become eligible for refresh. Upon next +# access, an async reload is scheduled and the old value returned until it +# completes. If permissions_validity_in_ms is non-zero, then this must be +# also. +# Defaults to the same value as permissions_validity_in_ms. +# permissions_update_interval_in_ms: 2000 + +# Validity period for credentials cache. This cache is tightly coupled to +# the provided PasswordAuthenticator implementation of IAuthenticator. If +# another IAuthenticator implementation is configured, this cache will not +# be automatically used and so the following settings will have no effect. +# Please note, credentials are cached in their encrypted form, so while +# activating this cache may reduce the number of queries made to the +# underlying table, it may not bring a significant reduction in the +# latency of individual authentication attempts. +# Defaults to 2000, set to 0 to disable credentials caching. +credentials_validity_in_ms: 2000 + +# Refresh interval for credentials cache (if enabled). +# After this interval, cache entries become eligible for refresh. Upon next +# access, an async reload is scheduled and the old value returned until it +# completes. If credentials_validity_in_ms is non-zero, then this must be +# also. +# Defaults to the same value as credentials_validity_in_ms. +# credentials_update_interval_in_ms: 2000 + +# The partitioner is responsible for distributing groups of rows (by +# partition key) across nodes in the cluster. You should leave this +# alone for new clusters. The partitioner can NOT be changed without +# reloading all data, so when upgrading you should set this to the +# same partitioner you were already using. +# +# Besides Murmur3Partitioner, partitioners included for backwards +# compatibility include RandomPartitioner, ByteOrderedPartitioner, and +# OrderPreservingPartitioner. +# +partitioner: org.apache.cassandra.dht.Murmur3Partitioner + +# Directories where Cassandra should store data on disk. Cassandra +# will spread data evenly across them, subject to the granularity of +# the configured compaction strategy. +# If not set, the default directory is $CASSANDRA_HOME/data/data. +data_file_directories: + - /cassandra_data/data + +# commit log. when running on magnetic HDD, this should be a +# separate spindle than the data directories. +# If not set, the default directory is $CASSANDRA_HOME/data/commitlog. +commitlog_directory: /cassandra_data/commitlog + +# policy for data disk failures: +# die: shut down gossip and client transports and kill the JVM for any fs errors or +# single-sstable errors, so the node can be replaced. +# stop_paranoid: shut down gossip and client transports even for single-sstable errors, +# kill the JVM for errors during startup. +# stop: shut down gossip and client transports, leaving the node effectively dead, but +# can still be inspected via JMX, kill the JVM for errors during startup. +# best_effort: stop using the failed disk and respond to requests based on +# remaining available sstables. This means you WILL see obsolete +# data at CL.ONE! +# ignore: ignore fatal errors and let requests fail, as in pre-1.2 Cassandra +disk_failure_policy: stop + +# policy for commit disk failures: +# die: shut down gossip and Thrift and kill the JVM, so the node can be replaced. +# stop: shut down gossip and Thrift, leaving the node effectively dead, but +# can still be inspected via JMX. +# stop_commit: shutdown the commit log, letting writes collect but +# continuing to service reads, as in pre-2.0.5 Cassandra +# ignore: ignore fatal errors and let the batches fail +commit_failure_policy: stop + +# Maximum size of the key cache in memory. +# +# Each key cache hit saves 1 seek and each row cache hit saves 2 seeks at the +# minimum, sometimes more. The key cache is fairly tiny for the amount of +# time it saves, so it's worthwhile to use it at large numbers. +# The row cache saves even more time, but must contain the entire row, +# so it is extremely space-intensive. It's best to only use the +# row cache if you have hot rows or static rows. +# +# NOTE: if you reduce the size, you may not get you hottest keys loaded on startup. +# +# Default value is empty to make it "auto" (min(5% of Heap (in MB), 100MB)). Set to 0 to disable key cache. +key_cache_size_in_mb: + +# Duration in seconds after which Cassandra should +# save the key cache. Caches are saved to saved_caches_directory as +# specified in this configuration file. +# +# Saved caches greatly improve cold-start speeds, and is relatively cheap in +# terms of I/O for the key cache. Row cache saving is much more expensive and +# has limited use. +# +# Default is 14400 or 4 hours. +key_cache_save_period: 14400 + +# Number of keys from the key cache to save +# Disabled by default, meaning all keys are going to be saved +# key_cache_keys_to_save: 100 + +# Row cache implementation class name. +# Available implementations: +# org.apache.cassandra.cache.OHCProvider Fully off-heap row cache implementation (default). +# org.apache.cassandra.cache.SerializingCacheProvider This is the row cache implementation availabile +# in previous releases of Cassandra. +# row_cache_class_name: org.apache.cassandra.cache.OHCProvider + +# Maximum size of the row cache in memory. +# Please note that OHC cache implementation requires some additional off-heap memory to manage +# the map structures and some in-flight memory during operations before/after cache entries can be +# accounted against the cache capacity. This overhead is usually small compared to the whole capacity. +# Do not specify more memory that the system can afford in the worst usual situation and leave some +# headroom for OS block level cache. Do never allow your system to swap. +# +# Default value is 0, to disable row caching. +row_cache_size_in_mb: 0 + +# Duration in seconds after which Cassandra should save the row cache. +# Caches are saved to saved_caches_directory as specified in this configuration file. +# +# Saved caches greatly improve cold-start speeds, and is relatively cheap in +# terms of I/O for the key cache. Row cache saving is much more expensive and +# has limited use. +# +# Default is 0 to disable saving the row cache. +row_cache_save_period: 0 + +# Number of keys from the row cache to save. +# Specify 0 (which is the default), meaning all keys are going to be saved +# row_cache_keys_to_save: 100 + +# Maximum size of the counter cache in memory. +# +# Counter cache helps to reduce counter locks' contention for hot counter cells. +# In case of RF = 1 a counter cache hit will cause Cassandra to skip the read before +# write entirely. With RF > 1 a counter cache hit will still help to reduce the duration +# of the lock hold, helping with hot counter cell updates, but will not allow skipping +# the read entirely. Only the local (clock, count) tuple of a counter cell is kept +# in memory, not the whole counter, so it's relatively cheap. +# +# NOTE: if you reduce the size, you may not get you hottest keys loaded on startup. +# +# Default value is empty to make it "auto" (min(2.5% of Heap (in MB), 50MB)). Set to 0 to disable counter cache. +# NOTE: if you perform counter deletes and rely on low gcgs, you should disable the counter cache. +counter_cache_size_in_mb: + +# Duration in seconds after which Cassandra should +# save the counter cache (keys only). Caches are saved to saved_caches_directory as +# specified in this configuration file. +# +# Default is 7200 or 2 hours. +counter_cache_save_period: 7200 + +# Number of keys from the counter cache to save +# Disabled by default, meaning all keys are going to be saved +# counter_cache_keys_to_save: 100 + +# saved caches +# If not set, the default directory is $CASSANDRA_HOME/data/saved_caches. +saved_caches_directory: /cassandra_data/saved_caches + +# commitlog_sync may be either "periodic" or "batch." +# +# When in batch mode, Cassandra won't ack writes until the commit log +# has been fsynced to disk. It will wait +# commitlog_sync_batch_window_in_ms milliseconds between fsyncs. +# This window should be kept short because the writer threads will +# be unable to do extra work while waiting. (You may need to increase +# concurrent_writes for the same reason.) +# +# commitlog_sync: batch +# commitlog_sync_batch_window_in_ms: 2 +# +# the other option is "periodic" where writes may be acked immediately +# and the CommitLog is simply synced every commitlog_sync_period_in_ms +# milliseconds. +commitlog_sync: periodic +commitlog_sync_period_in_ms: 10000 + +# The size of the individual commitlog file segments. A commitlog +# segment may be archived, deleted, or recycled once all the data +# in it (potentially from each columnfamily in the system) has been +# flushed to sstables. +# +# The default size is 32, which is almost always fine, but if you are +# archiving commitlog segments (see commitlog_archiving.properties), +# then you probably want a finer granularity of archiving; 8 or 16 MB +# is reasonable. +# Max mutation size is also configurable via max_mutation_size_in_kb setting in +# cassandra.yaml. The default is half the size commitlog_segment_size_in_mb * 1024. +# +# NOTE: If max_mutation_size_in_kb is set explicitly then commitlog_segment_size_in_mb must +# be set to at least twice the size of max_mutation_size_in_kb / 1024 +# +commitlog_segment_size_in_mb: 32 + +# Compression to apply to the commit log. If omitted, the commit log +# will be written uncompressed. LZ4, Snappy, and Deflate compressors +# are supported. +#commitlog_compression: +# - class_name: LZ4Compressor +# parameters: +# - + +# any class that implements the SeedProvider interface and has a +# constructor that takes a Map of parameters will do. +seed_provider: + # Addresses of hosts that are deemed contact points. + # Cassandra nodes use this list of hosts to find each other and learn + # the topology of the ring. You must change this if you are running + # multiple nodes! + - class_name: io.k8s.cassandra.KubernetesSeedProvider + parameters: + # seeds is actually a comma-delimited list of addresses. + # Ex: ",," + - seeds: "127.0.0.1" + +# For workloads with more data than can fit in memory, Cassandra's +# bottleneck will be reads that need to fetch data from +# disk. "concurrent_reads" should be set to (16 * number_of_drives) in +# order to allow the operations to enqueue low enough in the stack +# that the OS and drives can reorder them. Same applies to +# "concurrent_counter_writes", since counter writes read the current +# values before incrementing and writing them back. +# +# On the other hand, since writes are almost never IO bound, the ideal +# number of "concurrent_writes" is dependent on the number of cores in +# your system; (8 * number_of_cores) is a good rule of thumb. +concurrent_reads: 32 +concurrent_writes: 32 +concurrent_counter_writes: 32 + +# For materialized view writes, as there is a read involved, so this should +# be limited by the less of concurrent reads or concurrent writes. +concurrent_materialized_view_writes: 32 + +# Maximum memory to use for pooling sstable buffers. Defaults to the smaller +# of 1/4 of heap or 512MB. This pool is allocated off-heap, so is in addition +# to the memory allocated for heap. Memory is only allocated as needed. +# file_cache_size_in_mb: 512 + +# Flag indicating whether to allocate on or off heap when the sstable buffer +# pool is exhausted, that is when it has exceeded the maximum memory +# file_cache_size_in_mb, beyond which it will not cache buffers but allocate on request. + +# buffer_pool_use_heap_if_exhausted: true + +# The strategy for optimizing disk read +# Possible values are: +# ssd (for solid state disks, the default) +# spinning (for spinning disks) +# disk_optimization_strategy: ssd + +# Total permitted memory to use for memtables. Cassandra will stop +# accepting writes when the limit is exceeded until a flush completes, +# and will trigger a flush based on memtable_cleanup_threshold +# If omitted, Cassandra will set both to 1/4 the size of the heap. +# memtable_heap_space_in_mb: 2048 +# memtable_offheap_space_in_mb: 2048 + +# Ratio of occupied non-flushing memtable size to total permitted size +# that will trigger a flush of the largest memtable. Larger mct will +# mean larger flushes and hence less compaction, but also less concurrent +# flush activity which can make it difficult to keep your disks fed +# under heavy write load. +# +# memtable_cleanup_threshold defaults to 1 / (memtable_flush_writers + 1) +# memtable_cleanup_threshold: 0.11 + +# Specify the way Cassandra allocates and manages memtable memory. +# Options are: +# heap_buffers: on heap nio buffers +# offheap_buffers: off heap (direct) nio buffers +# offheap_objects: off heap objects +memtable_allocation_type: heap_buffers + +# Total space to use for commit logs on disk. +# +# If space gets above this value, Cassandra will flush every dirty CF +# in the oldest segment and remove it. So a small total commitlog space +# will tend to cause more flush activity on less-active columnfamilies. +# +# The default value is the smaller of 8192, and 1/4 of the total space +# of the commitlog volume. +# +# commitlog_total_space_in_mb: 8192 + +# This sets the amount of memtable flush writer threads. These will +# be blocked by disk io, and each one will hold a memtable in memory +# while blocked. +# +# memtable_flush_writers defaults to one per data_file_directory. +# +# If your data directories are backed by SSD, you can increase this, but +# avoid having memtable_flush_writers * data_file_directories > number of cores +#memtable_flush_writers: 1 + +# A fixed memory pool size in MB for for SSTable index summaries. If left +# empty, this will default to 5% of the heap size. If the memory usage of +# all index summaries exceeds this limit, SSTables with low read rates will +# shrink their index summaries in order to meet this limit. However, this +# is a best-effort process. In extreme conditions Cassandra may need to use +# more than this amount of memory. +index_summary_capacity_in_mb: + +# How frequently index summaries should be resampled. This is done +# periodically to redistribute memory from the fixed-size pool to sstables +# proportional their recent read rates. Setting to -1 will disable this +# process, leaving existing index summaries at their current sampling level. +index_summary_resize_interval_in_minutes: 60 + +# Whether to, when doing sequential writing, fsync() at intervals in +# order to force the operating system to flush the dirty +# buffers. Enable this to avoid sudden dirty buffer flushing from +# impacting read latencies. Almost always a good idea on SSDs; not +# necessarily on platters. +trickle_fsync: false +trickle_fsync_interval_in_kb: 10240 + +# TCP port, for commands and data +# For security reasons, you should not expose this port to the internet. Firewall it if needed. +storage_port: 7000 + +# SSL port, for encrypted communication. Unused unless enabled in +# encryption_options +# For security reasons, you should not expose this port to the internet. Firewall it if needed. +ssl_storage_port: 7001 + +# Address or interface to bind to and tell other Cassandra nodes to connect to. +# You _must_ change this if you want multiple nodes to be able to communicate! +# +# Set listen_address OR listen_interface, not both. Interfaces must correspond +# to a single address, IP aliasing is not supported. +# +# Leaving it blank leaves it up to InetAddress.getLocalHost(). This +# will always do the Right Thing _if_ the node is properly configured +# (hostname, name resolution, etc), and the Right Thing is to use the +# address associated with the hostname (it might not be). +# +# Setting listen_address to 0.0.0.0 is always wrong. +# +# If you choose to specify the interface by name and the interface has an ipv4 and an ipv6 address +# you can specify which should be chosen using listen_interface_prefer_ipv6. If false the first ipv4 +# address will be used. If true the first ipv6 address will be used. Defaults to false preferring +# ipv4. If there is only one address it will be selected regardless of ipv4/ipv6. +listen_address: localhost +# listen_interface: eth0 +# listen_interface_prefer_ipv6: false + +# Address to broadcast to other Cassandra nodes +# Leaving this blank will set it to the same value as listen_address +# broadcast_address: 1.2.3.4 + +# When using multiple physical network interfaces, set this +# to true to listen on broadcast_address in addition to +# the listen_address, allowing nodes to communicate in both +# interfaces. +# Ignore this property if the network configuration automatically +# routes between the public and private networks such as EC2. +# listen_on_broadcast_address: false + +# Internode authentication backend, implementing IInternodeAuthenticator; +# used to allow/disallow connections from peer nodes. +# internode_authenticator: org.apache.cassandra.auth.AllowAllInternodeAuthenticator + +# Whether to start the native transport server. +# Please note that the address on which the native transport is bound is the +# same as the rpc_address. The port however is different and specified below. +start_native_transport: true +# port for the CQL native transport to listen for clients on +# For security reasons, you should not expose this port to the internet. Firewall it if needed. +native_transport_port: 9042 +# Enabling native transport encryption in client_encryption_options allows you to either use +# encryption for the standard port or to use a dedicated, additional port along with the unencrypted +# standard native_transport_port. +# Enabling client encryption and keeping native_transport_port_ssl disabled will use encryption +# for native_transport_port. Setting native_transport_port_ssl to a different value +# from native_transport_port will use encryption for native_transport_port_ssl while +# keeping native_transport_port unencrypted. +# native_transport_port_ssl: 9142 +# The maximum threads for handling requests when the native transport is used. +# This is similar to rpc_max_threads though the default differs slightly (and +# there is no native_transport_min_threads, idle threads will always be stopped +# after 30 seconds). +# native_transport_max_threads: 128 +# +# The maximum size of allowed frame. Frame (requests) larger than this will +# be rejected as invalid. The default is 256MB. +# native_transport_max_frame_size_in_mb: 256 + +# The maximum number of concurrent client connections. +# The default is -1, which means unlimited. +# native_transport_max_concurrent_connections: -1 + +# The maximum number of concurrent client connections per source ip. +# The default is -1, which means unlimited. +# native_transport_max_concurrent_connections_per_ip: -1 + +# Whether to start the thrift rpc server. +start_rpc: false + +# The address or interface to bind the Thrift RPC service and native transport +# server to. +# +# Set rpc_address OR rpc_interface, not both. Interfaces must correspond +# to a single address, IP aliasing is not supported. +# +# Leaving rpc_address blank has the same effect as on listen_address +# (i.e. it will be based on the configured hostname of the node). +# +# Note that unlike listen_address, you can specify 0.0.0.0, but you must also +# set broadcast_rpc_address to a value other than 0.0.0.0. +# +# For security reasons, you should not expose this port to the internet. Firewall it if needed. +# +# If you choose to specify the interface by name and the interface has an ipv4 and an ipv6 address +# you can specify which should be chosen using rpc_interface_prefer_ipv6. If false the first ipv4 +# address will be used. If true the first ipv6 address will be used. Defaults to false preferring +# ipv4. If there is only one address it will be selected regardless of ipv4/ipv6. +rpc_address: localhost +# rpc_interface: eth1 +# rpc_interface_prefer_ipv6: false + +# port for Thrift to listen for clients on +rpc_port: 9160 + +# RPC address to broadcast to drivers and other Cassandra nodes. This cannot +# be set to 0.0.0.0. If left blank, this will be set to the value of +# rpc_address. If rpc_address is set to 0.0.0.0, broadcast_rpc_address must +# be set. +# broadcast_rpc_address: 1.2.3.4 + +# enable or disable keepalive on rpc/native connections +rpc_keepalive: true + +# Cassandra provides two out-of-the-box options for the RPC Server: +# +# sync -> One thread per thrift connection. For a very large number of clients, memory +# will be your limiting factor. On a 64 bit JVM, 180KB is the minimum stack size +# per thread, and that will correspond to your use of virtual memory (but physical memory +# may be limited depending on use of stack space). +# +# hsha -> Stands for "half synchronous, half asynchronous." All thrift clients are handled +# asynchronously using a small number of threads that does not vary with the amount +# of thrift clients (and thus scales well to many clients). The rpc requests are still +# synchronous (one thread per active request). If hsha is selected then it is essential +# that rpc_max_threads is changed from the default value of unlimited. +# +# The default is sync because on Windows hsha is about 30% slower. On Linux, +# sync/hsha performance is about the same, with hsha of course using less memory. +# +# Alternatively, can provide your own RPC server by providing the fully-qualified class name +# of an o.a.c.t.TServerFactory that can create an instance of it. +rpc_server_type: sync + +# Uncomment rpc_min|max_thread to set request pool size limits. +# +# Regardless of your choice of RPC server (see above), the number of maximum requests in the +# RPC thread pool dictates how many concurrent requests are possible (but if you are using the sync +# RPC server, it also dictates the number of clients that can be connected at all). +# +# The default is unlimited and thus provides no protection against clients overwhelming the server. You are +# encouraged to set a maximum that makes sense for you in production, but do keep in mind that +# rpc_max_threads represents the maximum number of client requests this server may execute concurrently. +# +# rpc_min_threads: 16 +# rpc_max_threads: 2048 + +# uncomment to set socket buffer sizes on rpc connections +# rpc_send_buff_size_in_bytes: +# rpc_recv_buff_size_in_bytes: + +# Uncomment to set socket buffer size for internode communication +# Note that when setting this, the buffer size is limited by net.core.wmem_max +# and when not setting it it is defined by net.ipv4.tcp_wmem +# See: +# /proc/sys/net/core/wmem_max +# /proc/sys/net/core/rmem_max +# /proc/sys/net/ipv4/tcp_wmem +# /proc/sys/net/ipv4/tcp_wmem +# and: man tcp +# internode_send_buff_size_in_bytes: +# internode_recv_buff_size_in_bytes: + +# Frame size for thrift (maximum message length). +thrift_framed_transport_size_in_mb: 15 + +# Set to true to have Cassandra create a hard link to each sstable +# flushed or streamed locally in a backups/ subdirectory of the +# keyspace data. Removing these links is the operator's +# responsibility. +incremental_backups: false + +# Whether or not to take a snapshot before each compaction. Be +# careful using this option, since Cassandra won't clean up the +# snapshots for you. Mostly useful if you're paranoid when there +# is a data format change. +snapshot_before_compaction: false + +# Whether or not a snapshot is taken of the data before keyspace truncation +# or dropping of column families. The STRONGLY advised default of true +# should be used to provide data safety. If you set this flag to false, you will +# lose data on truncation or drop. +auto_snapshot: true + +# When executing a scan, within or across a partition, we need to keep the +# tombstones seen in memory so we can return them to the coordinator, which +# will use them to make sure other replicas also know about the deleted rows. +# With workloads that generate a lot of tombstones, this can cause performance +# problems and even exaust the server heap. +# (http://www.datastax.com/dev/blog/cassandra-anti-patterns-queues-and-queue-like-datasets) +# Adjust the thresholds here if you understand the dangers and want to +# scan more tombstones anyway. These thresholds may also be adjusted at runtime +# using the StorageService mbean. +tombstone_warn_threshold: 1000 +tombstone_failure_threshold: 100000 + +# Granularity of the collation index of rows within a partition. +# Increase if your rows are large, or if you have a very large +# number of rows per partition. The competing goals are these: +# 1) a smaller granularity means more index entries are generated +# and looking up rows within the partition by collation column +# is faster +# 2) but, Cassandra will keep the collation index in memory for hot +# rows (as part of the key cache), so a larger granularity means +# you can cache more hot rows +column_index_size_in_kb: 64 + + +# Log WARN on any batch size exceeding this value. 5kb per batch by default. +# Caution should be taken on increasing the size of this threshold as it can lead to node instability. +batch_size_warn_threshold_in_kb: 5 + +# Fail any batch exceeding this value. 50kb (10x warn threshold) by default. +batch_size_fail_threshold_in_kb: 50 + +# Number of simultaneous compactions to allow, NOT including +# validation "compactions" for anti-entropy repair. Simultaneous +# compactions can help preserve read performance in a mixed read/write +# workload, by mitigating the tendency of small sstables to accumulate +# during a single long running compactions. The default is usually +# fine and if you experience problems with compaction running too +# slowly or too fast, you should look at +# compaction_throughput_mb_per_sec first. +# +# concurrent_compactors defaults to the smaller of (number of disks, +# number of cores), with a minimum of 2 and a maximum of 8. +# +# If your data directories are backed by SSD, you should increase this +# to the number of cores. +#concurrent_compactors: 1 + +# Throttles compaction to the given total throughput across the entire +# system. The faster you insert data, the faster you need to compact in +# order to keep the sstable count down, but in general, setting this to +# 16 to 32 times the rate you are inserting data is more than sufficient. +# Setting this to 0 disables throttling. Note that this account for all types +# of compaction, including validation compaction. +compaction_throughput_mb_per_sec: 16 + +# Log a warning when compacting partitions larger than this value +compaction_large_partition_warning_threshold_mb: 100 + +# When compacting, the replacement sstable(s) can be opened before they +# are completely written, and used in place of the prior sstables for +# any range that has been written. This helps to smoothly transfer reads +# between the sstables, reducing page cache churn and keeping hot rows hot +sstable_preemptive_open_interval_in_mb: 50 + +# Throttles all outbound streaming file transfers on this node to the +# given total throughput in Mbps. This is necessary because Cassandra does +# mostly sequential IO when streaming data during bootstrap or repair, which +# can lead to saturating the network connection and degrading rpc performance. +# When unset, the default is 200 Mbps or 25 MB/s. +# stream_throughput_outbound_megabits_per_sec: 200 + +# Throttles all streaming file transfer between the datacenters, +# this setting allows users to throttle inter dc stream throughput in addition +# to throttling all network stream traffic as configured with +# stream_throughput_outbound_megabits_per_sec +# When unset, the default is 200 Mbps or 25 MB/s +# inter_dc_stream_throughput_outbound_megabits_per_sec: 200 + +# How long the coordinator should wait for read operations to complete +read_request_timeout_in_ms: 5000 +# How long the coordinator should wait for seq or index scans to complete +range_request_timeout_in_ms: 10000 +# How long the coordinator should wait for writes to complete +write_request_timeout_in_ms: 2000 +# How long the coordinator should wait for counter writes to complete +counter_write_request_timeout_in_ms: 5000 +# How long a coordinator should continue to retry a CAS operation +# that contends with other proposals for the same row +cas_contention_timeout_in_ms: 1000 +# How long the coordinator should wait for truncates to complete +# (This can be much longer, because unless auto_snapshot is disabled +# we need to flush first so we can snapshot before removing the data.) +truncate_request_timeout_in_ms: 60000 +# The default timeout for other, miscellaneous operations +request_timeout_in_ms: 10000 + +# Enable operation timeout information exchange between nodes to accurately +# measure request timeouts. If disabled, replicas will assume that requests +# were forwarded to them instantly by the coordinator, which means that +# under overload conditions we will waste that much extra time processing +# already-timed-out requests. +# +# Warning: before enabling this property make sure to ntp is installed +# and the times are synchronized between the nodes. +cross_node_timeout: false + +# Set socket timeout for streaming operation. +# The stream session is failed if no data is received by any of the +# participants within that period. +# Default value is 3600000, which means streams timeout after an hour. +# streaming_socket_timeout_in_ms: 3600000 + +# phi value that must be reached for a host to be marked down. +# most users should never need to adjust this. +# phi_convict_threshold: 8 + +# endpoint_snitch -- Set this to a class that implements +# IEndpointSnitch. The snitch has two functions: +# - it teaches Cassandra enough about your network topology to route +# requests efficiently +# - it allows Cassandra to spread replicas around your cluster to avoid +# correlated failures. It does this by grouping machines into +# "datacenters" and "racks." Cassandra will do its best not to have +# more than one replica on the same "rack" (which may not actually +# be a physical location) +# +# IF YOU CHANGE THE SNITCH AFTER DATA IS INSERTED INTO THE CLUSTER, +# YOU MUST RUN A FULL REPAIR, SINCE THE SNITCH AFFECTS WHERE REPLICAS +# ARE PLACED. +# +# IF THE RACK A REPLICA IS PLACED IN CHANGES AFTER THE REPLICA HAS BEEN +# ADDED TO A RING, THE NODE MUST BE DECOMMISSIONED AND REBOOTSTRAPPED. +# +# Out of the box, Cassandra provides +# - SimpleSnitch: +# Treats Strategy order as proximity. This can improve cache +# locality when disabling read repair. Only appropriate for +# single-datacenter deployments. +# - GossipingPropertyFileSnitch +# This should be your go-to snitch for production use. The rack +# and datacenter for the local node are defined in +# cassandra-rackdc.properties and propagated to other nodes via +# gossip. If cassandra-topology.properties exists, it is used as a +# fallback, allowing migration from the PropertyFileSnitch. +# - PropertyFileSnitch: +# Proximity is determined by rack and data center, which are +# explicitly configured in cassandra-topology.properties. +# - Ec2Snitch: +# Appropriate for EC2 deployments in a single Region. Loads Region +# and Availability Zone information from the EC2 API. The Region is +# treated as the datacenter, and the Availability Zone as the rack. +# Only private IPs are used, so this will not work across multiple +# Regions. +# - Ec2MultiRegionSnitch: +# Uses public IPs as broadcast_address to allow cross-region +# connectivity. (Thus, you should set seed addresses to the public +# IP as well.) You will need to open the storage_port or +# ssl_storage_port on the public IP firewall. (For intra-Region +# traffic, Cassandra will switch to the private IP after +# establishing a connection.) +# - RackInferringSnitch: +# Proximity is determined by rack and data center, which are +# assumed to correspond to the 3rd and 2nd octet of each node's IP +# address, respectively. Unless this happens to match your +# deployment conventions, this is best used as an example of +# writing a custom Snitch class and is provided in that spirit. +# +# You can use a custom Snitch by setting this to the full class name +# of the snitch, which will be assumed to be on your classpath. +endpoint_snitch: SimpleSnitch + +# controls how often to perform the more expensive part of host score +# calculation +dynamic_snitch_update_interval_in_ms: 100 +# controls how often to reset all host scores, allowing a bad host to +# possibly recover +dynamic_snitch_reset_interval_in_ms: 600000 +# if set greater than zero and read_repair_chance is < 1.0, this will allow +# 'pinning' of replicas to hosts in order to increase cache capacity. +# The badness threshold will control how much worse the pinned host has to be +# before the dynamic snitch will prefer other replicas over it. This is +# expressed as a double which represents a percentage. Thus, a value of +# 0.2 means Cassandra would continue to prefer the static snitch values +# until the pinned host was 20% worse than the fastest. +dynamic_snitch_badness_threshold: 0.1 + +# request_scheduler -- Set this to a class that implements +# RequestScheduler, which will schedule incoming client requests +# according to the specific policy. This is useful for multi-tenancy +# with a single Cassandra cluster. +# NOTE: This is specifically for requests from the client and does +# not affect inter node communication. +# org.apache.cassandra.scheduler.NoScheduler - No scheduling takes place +# org.apache.cassandra.scheduler.RoundRobinScheduler - Round robin of +# client requests to a node with a separate queue for each +# request_scheduler_id. The scheduler is further customized by +# request_scheduler_options as described below. +request_scheduler: org.apache.cassandra.scheduler.NoScheduler + +# Scheduler Options vary based on the type of scheduler +# NoScheduler - Has no options +# RoundRobin +# - throttle_limit -- The throttle_limit is the number of in-flight +# requests per client. Requests beyond +# that limit are queued up until +# running requests can complete. +# The value of 80 here is twice the number of +# concurrent_reads + concurrent_writes. +# - default_weight -- default_weight is optional and allows for +# overriding the default which is 1. +# - weights -- Weights are optional and will default to 1 or the +# overridden default_weight. The weight translates into how +# many requests are handled during each turn of the +# RoundRobin, based on the scheduler id. +# +# request_scheduler_options: +# throttle_limit: 80 +# default_weight: 5 +# weights: +# Keyspace1: 1 +# Keyspace2: 5 + +# request_scheduler_id -- An identifier based on which to perform +# the request scheduling. Currently the only valid option is keyspace. +# request_scheduler_id: keyspace + +# Enable or disable inter-node encryption +# Default settings are TLS v1, RSA 1024-bit keys (it is imperative that +# users generate their own keys) TLS_RSA_WITH_AES_128_CBC_SHA as the cipher +# suite for authentication, key exchange and encryption of the actual data transfers. +# Use the DHE/ECDHE ciphers if running in FIPS 140 compliant mode. +# NOTE: No custom encryption options are enabled at the moment +# The available internode options are : all, none, dc, rack +# +# If set to dc cassandra will encrypt the traffic between the DCs +# If set to rack cassandra will encrypt the traffic between the racks +# +# The passwords used in these options must match the passwords used when generating +# the keystore and truststore. For instructions on generating these files, see: +# http://download.oracle.com/javase/6/docs/technotes/guides/security/jsse/JSSERefGuide.html#CreateKeystore +# +server_encryption_options: + internode_encryption: none + keystore: conf/.keystore + keystore_password: cassandra + truststore: conf/.truststore + truststore_password: cassandra + # More advanced defaults below: + # protocol: TLS + # algorithm: SunX509 + # store_type: JKS + # cipher_suites: [TLS_RSA_WITH_AES_128_CBC_SHA,TLS_RSA_WITH_AES_256_CBC_SHA,TLS_DHE_RSA_WITH_AES_128_CBC_SHA,TLS_DHE_RSA_WITH_AES_256_CBC_SHA,TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA,TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA] + # require_client_auth: false + +# enable or disable client/server encryption. +client_encryption_options: + enabled: false + # If enabled and optional is set to true encrypted and unencrypted connections are handled. + optional: false + keystore: conf/.keystore + keystore_password: cassandra + # require_client_auth: false + # Set trustore and truststore_password if require_client_auth is true + # truststore: conf/.truststore + # truststore_password: cassandra + # More advanced defaults below: + # protocol: TLS + # algorithm: SunX509 + # store_type: JKS + # cipher_suites: [TLS_RSA_WITH_AES_128_CBC_SHA,TLS_RSA_WITH_AES_256_CBC_SHA,TLS_DHE_RSA_WITH_AES_128_CBC_SHA,TLS_DHE_RSA_WITH_AES_256_CBC_SHA,TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA,TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA] + +# internode_compression controls whether traffic between nodes is +# compressed. +# can be: all - all traffic is compressed +# dc - traffic between different datacenters is compressed +# none - nothing is compressed. +internode_compression: all + +# Enable or disable tcp_nodelay for inter-dc communication. +# Disabling it will result in larger (but fewer) network packets being sent, +# reducing overhead from the TCP protocol itself, at the cost of increasing +# latency if you block for cross-datacenter responses. +inter_dc_tcp_nodelay: false + +# TTL for different trace types used during logging of the repair process. +tracetype_query_ttl: 86400 +tracetype_repair_ttl: 604800 + +# GC Pauses greater than gc_warn_threshold_in_ms will be logged at WARN level +# Adjust the threshold based on your application throughput requirement +# By default, Cassandra logs GC Pauses greater than 200 ms at INFO level +gc_warn_threshold_in_ms: 1000 + +# UDFs (user defined functions) are disabled by default. +# As of Cassandra 3.0 there is a sandbox in place that should prevent execution of evil code. +enable_user_defined_functions: false + +# Enables scripted UDFs (JavaScript UDFs). +# Java UDFs are always enabled, if enable_user_defined_functions is true. +# Enable this option to be able to use UDFs with "language javascript" or any custom JSR-223 provider. +# This option has no effect, if enable_user_defined_functions is false. +enable_scripted_user_defined_functions: false + +# The default Windows kernel timer and scheduling resolution is 15.6ms for power conservation. +# Lowering this value on Windows can provide much tighter latency and better throughput, however +# some virtualized environments may see a negative performance impact from changing this setting +# below their system default. The sysinternals 'clockres' tool can confirm your system's default +# setting. +windows_timer_interval: 1 + + +# Enables encrypting data at-rest (on disk). Different key providers can be plugged in, but the default reads from +# a JCE-style keystore. A single keystore can hold multiple keys, but the one referenced by +# the "key_alias" is the only key that will be used for encrypt opertaions; previously used keys +# can still (and should!) be in the keystore and will be used on decrypt operations +# (to handle the case of key rotation). +# +# It is strongly recommended to download and install Java Cryptography Extension (JCE) +# Unlimited Strength Jurisdiction Policy Files for your version of the JDK. +# (current link: http://www.oracle.com/technetwork/java/javase/downloads/jce8-download-2133166.html) +# +# Currently, only the following file types are supported for transparent data encryption, although +# more are coming in future cassandra releases: commitlog, hints +transparent_data_encryption_options: + enabled: false + chunk_length_kb: 64 + cipher: AES/CBC/PKCS5Padding + key_alias: testing:1 + # CBC IV length for AES needs to be 16 bytes (which is also the default size) + # iv_length: 16 + key_provider: + - class_name: org.apache.cassandra.security.JKSKeyProvider + parameters: + - keystore: conf/.keystore + keystore_password: cassandra + store_type: JCEKS + key_password: cassandra + diff --git a/pet-race-devops/docker/cassandra-debian-custom/files/kubernetes-cassandra.jar b/pet-race-devops/docker/cassandra-debian-custom/files/kubernetes-cassandra.jar new file mode 100644 index 0000000000000000000000000000000000000000..9adc53bf4690b278773ed9654cc54f9e3c343c9d GIT binary patch literal 9823 zcmbt)1y~i`_BY+qU6Rs`QUcNqhY$`S-QA6Va6r1_AR*n|A|Tx<-QA&d2_IZv^GEB@Pk7StW2m6OAl~~6(me%bV zr3bqiWtfB!;McNLV{sWiQMuM9OLI6#JEqVVV@Eq2^(nd4Cx<9u$tWp*5)OwA>LJKS zY6>#ScSGuQ?{tqxe?<2|n{JwnkMRU$g(=Ln-nAa$hj$SF@b2EBp9FnBGPC*V{+|r+ z-x(~p9sUaw#xEuVJqHIpYeRdzpX}eKBmsmPg$xA&@d5?{g5}?_%Q)#9*;^Yq8aXH% z85siXZJf;vjqIt|m<=rNRfa{|SYQdEcc#hdM|YYU+}Ko$%RMyR-vNB#=^nO zTq+!xPqg${0L?e*Hpexgx8S{o5RB!n4Z@tUi z)nZClY^}yDLB`$}1#iT^XeiXTxoi6BX%-p^#niaj^VU%`UN()^HG36|Bx!S;E_FWbpm`1W<$NvOkiI}izmv}VESd`;Fp;6{|eW9c%h`21{P!Vi^br|~E|d*4l# zHnV)PRzu7{t*x9h-l@n)A0gIApT^HGzwn4<#RilDP&7otndmZ1yAY6@o_+d+e1O2F zdWOJ3^~x^8%ROiGS;O@`lYom6#G25fCzKGj&IHpbh#J*G%`{bf@ zdF;(;qC{#Scd+X|df4R#`5Vw`)hr&jU!|w8ZPHz909bF+P7iX{Q5sAsK$6~QSGD8m zBGk8&ZXv@8RX8>W?om>Q z**z)P3Qs84L+Rrb;(F8g_{Qt)q2)j1hB3P!aJeI!oCf-vPHqI3C7WiZ%7=3wfQWJS z)TJz+grqz2PC1xh=V8o5geh9rERnQl7#4 z^&ZRH=6q>FH%rRu^{^Uve-}MWtf@ojrZRHPkbr)z&Z>8M_rhP*oQ7E$&B@eke^JFI zz%#WEItFKg<0h59>siEzRc2736(>5pm0zjZ@&RIsPElGI>PuD332&1t(}fjQSt$mI zx+XFKG$Vl#seI&ennhJEt;5s6ts{|;7u;|=j!-VIy`SE`1M1s^RFl;B+lrGo>O09N!dDU^_?wfBv7q;)Yu=l>D#qJ>&?$?>8|HB$1WN2t_DP_gLCCn%F~uuTd+XE^Yka3G7eTJGheh6 zGHRcD7Xkz;Em!M>PcIA$07M@`v3U*p9KklmYl82llY;dVl1|55HQUd1nV2mBl5px9 zbZ;jK*$z|4i+lQg4EOJ2$n`(OP|VuU*2c`*@kbODe?}2YNu$+-P6wV!1GO5R zpRBq721gQv^H&g+XlCt_lkx#|Z|4Of*{A*3n9Tnf#sa~?i1g%uwzOdxnP0|$>shq6{t$k#7 zqjv>FcQlq<<~S3AW5oN2VOC}A?GDCxa#i8km+}WUDtHvjQ)5CyvTSJK)#|#E&GB2d zy@N5>{M3(`p3bXT_Ij=GGz`tfJLN+%>qRc7w#FduMy2F*s08F*%^Qk?_N=e<8x&m~ z<)KL5gE%XbQRCa4sm;?_SUB0+OS@%gV9HJ|7{(G{>KSX^MGKbGJC{M|J`(wAr6reV zQJ0EDHy7z~j8Hoq(++52pX;nhj=x|4-ah)*sK3O!lux;j`u2U)Isb>KD?8~s7&-n` zxQcQLL=S~4j5`W2rLBs6O+t^ut&2)b?;8ool8(hGPI?x&kUXzwTM^1Ii`-n8D@}X> zc|#WdlBOZKfb>PY$@8JZfxwN8q4B3a{2#a92c5zYA!^ezCO$vMhJppHJL)rsGG{V5 znv2XO9Qu+}24&~MlwwC`CKV6!8$VfOk!9MyqvV$?{`?tD$V8Ym*&|b-7sKtoFki%a ze?4g3SX-PoniGsQ--qsdMoQ1gRU3d*+|(zfM^`PIyI$Yj3|1tUWN`x11$54;d&1YO zfaBz6{Oqx5>Gu{IKpNzye9&rFp#n4NO<{MHF2;WJMczz2GY*6^y4g1vl_5_wx<*^I zcW!_tqc>nWztluaLShSL2TAYfE!Y0R7^-hl0vbq4UL&egE~ym_YdMTEPG1q`VM=kF zNuPx>R%%G0>fOto{oc6K1 zOEBcDl=`LJt&v$^l0G4w9-D?Gs+-D)${O)cKLuY&BiYMl+* zH;-?1Iz8BLX_viNjAuP>saBy`1lrT6laKVnw{9ZIu%y3;A)-d=Ngz2fo9Py-7_Bxc3C?;qzs+GW=>~c8cW|(nq< zMj1c6@HEC71vy4tXfY~&^3zD79MMAC*~VmfC4JnUe7RET<07)o{t^L_zOgE@z)*t< zMx9X+kVBpEK_$oNqnHNs2oekL7CTyTR)m`=&MW5C4q+t4YSBWY4{xePE!sC%F};Ly z2!*s5@F#jySd{$|CPw2hi;sodSPaciM%`z~6qU&{s{x5IVi$*wHs<&$p{2OP)y@lYOJ|dEUxY zY6K_b{LCD#WfGgq-LD5Y6l~SF63k zs%@2;+CXeNMlTIYY0c~hV>qJA)h|WbZH5(QS<%LFjN)~+Ay2Imp0a>LVfoqtl?8=0 zC}P|ByDL)Vxu5*EGc?t%tL2g~_JcI2U<)(d$F$ns_2TBM%c-bYQq=9P%roxC=H!)B zXI<5riwAyqnxjttHm_W+00YM=_p{ZR7}!EgnUi#`iJl;|jQM5bEWnRQNw!zXR4P67 z8KnUFe$6zEipahK67Fg}R!)QoTcTuTz2%LHgcIA#!$$#flm+Li3I`a$S}$*-5J04B z+DukJ9k&j{&(h|ER5C+O#|b%B{nC=WKu!C>_Gi4{XN#dWla6|kQW;oB6dTN~MToQr zf$w%!KIHFLY|YMS@@cr4_v-rKM6}o%cwnJ5P}-%arSV}%=71%SP_!i`DU3NwLaa^- zgZ#flz{Y!v;`4f$(-X|)h}Y1px<>~36>HXhy)m}Putl`$hfGL2-r&&gW2oa?&{Ln- zAaWL~@~4byh=3dtqp-GBOdJdKH5IkcL(}z^Yi|%^0s|LMvE$3^PKMw@zPcRp7*(!pgmw(u4%QNQJKvWu@j z-FNrQWu_3Vfjhq5lVo@5GxU@iqh8h|&O=-PYVFq~Jn7#|Nsd7Pz3C0AS9Qfxgw9C?m8`yP6_|aGRz(;d-wE{z%-=+jOY;cf`I=p5?am(k=i*3R z$O2d>ps3A?=gAf#dceWuXb@{hcj4p7e8^>1YtY@Zv6R#huv5U_Ob zvxdMvhOJ#PLDFt}4Li9Chl-r5Kuz2>G>(^W^r1au(f{3$pE>wV2dXZp$r>WSE_ThD0HryB znsZdK6XX7EPnk~lpT1fSIFk!=dPMBUK3cI_Q$68QJ;ur9KWpBeIF`~W?*mEj2$k{C z&URuH%AgD!$JY@4I>Y`>=R{>w2C*snm_+AlOUn&+5&qdkRXamKp5}$YcEHQ!lB5qG zCc>CVUXc_N5o&NV!V$O&QD(!(5PI-C^eQ3k&LW!2lOgeL>+S$)^Vv|G0PR??f}ILL zEaE#J6uL2yMpUHsQ94Rm2XI=im~LAG;h3UyZKZqDxvi{MFEpJ8Enr= zg=bCq4jHomp;xdk9AQ1anB~+damc0OcW*Hb8?;|TzoB4O6iz33o`8ZGm{6Hb43d?m z<9xw~Gb83_*_aeNjmMSIP(1Z%qHtVAgv0f8zABLQFu5XHI4x(F2O-6UU1j;#DF)~r=B zNQPtB40kfhl@+0C!JJ`{Sl`u)8(CB9N$0GpECSY5Up4^z)Cf%8v@L(X%x(#Df6`KSKieWfi7ca@ATY(MDS-?EHzg}!tmS3 zo>ROWARLN)gW=Hf;+cBK@)SF2clmS?3Qk5r<&}NI(>2MaQWoGS{i zpcaqRZLM^cRT@k$v8@x>pr(T15Jw>GZ8m3QXRhoZ7Tr8M+p4538aEr;5=@5=7Pd*4 zdTvTX<~NNA!eg!tElQr(Q4kC_#9oRS2{`Vca9fT3d$%Ee{Z7aTb>eF?&n5mK1jQd1x6b0Chb zhyXjQ40<_7U!cT~YFu*GEHQQ!m$$i-r{xfyX65g!d}_X^a?Gu#tM8}}v3+^jE^`5A z#p(qsxccqm_DTMPYG}8hJD1)FPYPLzp+zHl`{xm34Yz|#;}RS$xg|#puLwJO@WmIs z{A`**{IJSBgL-fZ6H}0b7QV~N((!*lrxea2(D7UKS}k8|eCHIWID;JMuVWH{rjI7*7?DW5tF zhv`NspLgi=Lp*dLflf|@CTv}A_sGvOp&n;tnO39=l2dIkv>6A;aAM)-L^L?&KnJ`( zP>x|zePOq&%0>z#U?$yM7I_Y?&p=E~*d6RW20~Z+oeeY`oqS1koivI9x4_)w*!61K z(G>Ub92P3>$#9Vj3^3a~#|rK1Jk!F9=&%F^OEknTJU%qe3zF3hoT%eplyG z5RmF&pw3U?CGMFEoNg5zWU}*);s!fXvm@&D5ZJU?tz3q-F+O&$wkCQ+JTn;ah9xS< zG1v7Y{<&ml?>>%#^6?NR9sApEg(vzH^6{GhaRae%6PT~orlQwFI|}N&Nh?aZBZzlJZmQ1@wOfo;H!yI02Bw0N*q)uOkX|}{u zrg-=;G)PYXi%u8YN547M@g0jtE%waAE@wv4OOS^IY|?&Y z`Fitwu5)p_d((!)!N%_mD|06Vbw%x&nc?Vod227pTuzC#W>G4>xUyE3PkcmMbiqX}ABlp{*^EwD)}A z%K$bs?Cl%93z2A>_(Q0XcnP+KV|->5x0@qYW+XQ+JTyvl`V%~*bqvYO#I{U_K--|h z(Ma}Sx0KApA%5hWUi4nPqan4HH2T}iY- zobkk6qk!_}#7oz}vVNUC7UI?;@}e(z*UU1?CD^gr9^>Smme_@L*GI$Hci7%v(S@6K z$cqHRcK|`nYcQ|ZS$N(s$S>u+4A*_MtoZzpQ($nrcua@)jRHDp%WK6#a$*Uq?#*)& zp?So;a_K->7s5A|1>OZB&eeJ9hNtOfuOqx?FgQ^R_7O@Pm+6~LV0JGm7#^j6HB&L( z_img5@$>pWBA|8+7;(H9&i4zHx8mDf6QNz@Y1+W3s{2IWS7|yOt35KmaUQ-D;|7Kd zyj6Uc=S3Vf5RZYA6T{4+vCX9BOG{7+)u>}s1m(4dp%|-6WUSBUp@Jea5`peGMizcL z)lw&~&!GgE9zxk$IV3~X=PEQtlV^AL?j}7$^%(V-lJWOiYb)l2u2sab&c&S*!kCk) zU1D}eKOYvFld)M6a7Vu0ZgBNk=oC3&MjfVmz7qX~O6ELKre(DR?AnU+Nx4M&`L2eq zU&(k8?($0-wy;T!kfCMBlIk*V!MA}+ZN~19XsZw(0oy#!7BgwvA?72x>J(ap;+O57 z`%)xlF?^vCh|s5?|D^0ns0>_i`HGS%hUk#m$#)G^+M2rQTC#_<%%cs0Zn7YdvGY0Q ziCK3~wQx&ZP4Z*09|+4XQSuD3xJ0No^aNYL=GkF1y}{$|EXq9xF2VyR^{$|`*AUiw zM4=is#SeJ;`6t^vf>m2+mZ=e06t28Gu1L$9B#I9s{S7b!s6!=PaW2pqs6*{f6{e0P z>J|cbqm^kv=l#2o)tF7H&c0Zo+_yoST738;Xs(&02i~su%Q+&%{^BDe>P{#`Iy$Z} z@4}bp7sn~L9NEa8UDwnF*veI6S!fgpTQ^@<$6dNHAon8m9;LNlHa8UMs!M86d2T8b z1oHZiMlwRottW`vz9K!t8BSMT)Lhf`ILpw>+XgEOTeCS7!k&uZwjKkyxh(4AzRm<$ z*fLQ%vUFWokYtsb_(PQ1?&1&e_NwCR$Dw3GQHGwWx!qXEo#?aWa>-i4nC?3>m0VJ{BxZ)jJZzHd5YRR)>V={QOxR!c~0L+U@9PGF+)zX<@K3be@}<~39zoaZ>ja5KFR}CQ(e3%TJ8k$IpzX4NLn&pY%$WdwY3fL zj6Zn=n@VBF1j|p*rYR!hJhC~;0z|;4S*j$@KG%~isd4NXrRQjq=ZPhjIXo4~ANXG7 z$~|zzg?JPL;G;Y}o8g;ZK?V#%O$uc^eI)P7| zxRxpY%`GlW*BDJ*AFc!zHj>aKR+WG?dG`3T?+O=0Z(BDCf-Jo|QO{9{mNxgkG*?Z* zSyJ45(q}LiteWFW8#tou^Fo{L@<9X8a<1aoOrrMDxXGpao@P$Xse{j*EJ?*J@xOJw ze{9_wJck%Q7w243q01divhBIe(b*YJe)%D8$1Ab7g;VoD$6?5Zd+r8T=!QA7#0=P@ zdzmj*nL1AEOqRt20iwPkQNHz>VE~60xm{AsJ+A3@d&eKw+*})9HAHZUx-j;qdE&%8kQI#-j;6rjS?7Gbs; z(~#tp(k#S?f-;NkGU88^>o2Kn2zXy`x6tyeJ(37bG4|+<%h_H(4@YIf7r#Rf+pJ1( zR8M!y*$C?1Gfns}BD+*#Z)0^+;d7PVSKy13=yNWKBcy~PUlke?ejy5r(`aF~Xgwn? zdnsqN?+F4A>h+tvuR12Hl_bpqrDq|y(y%&^;UMr2D)q#@NR;NH&rlJ-*Lq2M^2x5% zUf6__(A^2&R>DwX&`9TvE^i9EcBJ79m5_$8r7a;zilYaO00#9Jko1TKtLr-%5h!?$ zC4v!j&lhV-0@kg90&u|y|i@e>3*-Sg4`xLJ~BBrkYYkZO4O z-@0plDgGSd{-`eWN^pqzid4&aaENdIwd1H?r2{wbE~&(~tsX@E3@Knj# zTF|{;)+!bzaHr+A?D9Wz|cxgg{+G6 z_#~(Cxrt3t>hmHd}HE<41aI?&8@v4m$JB?$i6sm$e3SRfk>{m`GXCpI_h)?CfQA@15 zFd0O!d4UB;)Ggb)TCwGIRLXs>p38BeE5|O$RZltAc{ln-LTw()T4$|r@VRQkpMDnY z#BWZ*Wz(;nsVMN`LRTU8iW;4!?trThxK*De_SO+wefM?@?hYAr9FOhD7v^d`{gka- z!^$2Q+bx_sv~R4r|5@hU{(KM7XRNmeH7?9$?sNR7{;sl1m<`K3_2<%?A+^Tz2Nf$d z3_5_jpXkn^ zSb(eWv5AOxOw>|u4p@+tY@AM#qe2-xKCG^j$><{tpkNJBe#192o zzP$fV{J*zF{F;I9%6~`0e<_c?pO8O%`wz~4@%MRk0;C}(Gugxd literal 0 HcmV?d00001 diff --git a/pet-race-devops/docker/cassandra-debian-custom/files/logback.xml b/pet-race-devops/docker/cassandra-debian-custom/files/logback.xml new file mode 100644 index 0000000..2bb893e --- /dev/null +++ b/pet-race-devops/docker/cassandra-debian-custom/files/logback.xml @@ -0,0 +1,13 @@ + + + + + + %-5level %date{HH:mm:ss,SSS} %msg%n + + + + + + + \ No newline at end of file diff --git a/pet-race-devops/docker/cassandra-debian-custom/files/ready-probe.sh b/pet-race-devops/docker/cassandra-debian-custom/files/ready-probe.sh new file mode 100644 index 0000000..9cbc91d --- /dev/null +++ b/pet-race-devops/docker/cassandra-debian-custom/files/ready-probe.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +if [[ $DEBUG ]]; then + if [[ $(/opt/cassandra/bin/nodetool status | grep $POD_IP) == *"UN"* ]]; then echo "UN"; else echo "NOT UP"; fi +fi +if [[ $(/opt/cassandra/bin/nodetool status | grep $POD_IP) == *"UN"* ]]; then exit 0; else exit 1; fi diff --git a/pet-race-devops/docker/cassandra-debian-custom/files/run.sh b/pet-race-devops/docker/cassandra-debian-custom/files/run.sh new file mode 100644 index 0000000..4fe4d70 --- /dev/null +++ b/pet-race-devops/docker/cassandra-debian-custom/files/run.sh @@ -0,0 +1,104 @@ +#!/bin/bash + +# Copyright 2014 The Kubernetes Authors All rights reserved. +# +# 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. + +set -e +CONF_DIR=/opt/cassandra/conf +CFG=$CONF_DIR/cassandra.yaml + +# The following vars relate to there counter parts in $CFG +# for instance rpc_address +CASSANDRA_RPC_ADDRESS="${CASSANDRA_RPC_ADDRESS:-0.0.0.0}" +CASSANDRA_NUM_TOKENS="${CASSANDRA_NUM_TOKENS:-32}" +CASSANDRA_CLUSTER_NAME="${CASSANDRA_CLUSTER_NAME:='Test Cluster'}" +CASSANDRA_LISTEN_ADDRESS=${POD_IP} +CASSANDRA_BROADCAST_ADDRESS=${POD_IP} +CASSANDRA_BROADCAST_RPC_ADDRESS=${POD_IP} +CASSANDRA_DISK_OPTIMIZATION_STRATEGY="${CASSANDRA_DISK_OPTIMIZATION_STRATEGY:-spinning}" +CASSANDRA_MIGRATION_WAIT="${CASSANDRA_MIGRATION_WAIT:-1}" +CASSANDRA_ENDPOINT_SNITCH="${CASSANDRA_ENDPOINT_SNITCH:-SimpleSnitch}" +CASSANDRA_RING_DELAY="${CASSANDRA_RING_DELAY:-30000}" + +# Turn off JMX auth +CASSANDRA_OPEN_JMX="${CASSANDRA_OPEN_JMX:-false}" +# send GC to STDOUT +CASSANDRA_GC_STDOUT="${CASSANDRA_GC_STDOUT:-false}" + +# TODO what else needs to be modified +for yaml in \ + broadcast_address \ + broadcast_rpc_address \ + cluster_name \ + listen_address \ + num_tokens \ + rpc_address \ + disk_optimization_strategy \ + endpoint_snitch \ +; do + var="CASSANDRA_${yaml^^}" + val="${!var}" + if [ "$val" ]; then + sed -ri 's/^(# )?('"$yaml"':).*/\2 '"$val"'/' "$CFG" + fi +done + +# TODO: Get rack and dc working +# Eventually do snitch $DC $RACK? +# $DC based on yaml. Two racks in a DC?? +# can use node selectors to put +# Eventualy code a snitch that talks to the api to get the labels from the nodes +# Not sure how to do the SeedProviders, either run seperate services or launch a Seed node +# in every DC. Probably need seperate services and capabilty to set ips based on ENV vars? +# GoogleProvider sets region as DC and Zone as rack +# https://github.com/apache/cassandra/blob/cassandra-3.5/src/java/org/apache/cassandra/locator/GoogleCloudSnitch.java +# GoogleCloudSnitch may work already + +if [[ $CASSANDA_DC && $CASSANDA_RACK ]]; then + echo "dc=$CASSANDA_DC" > $CONF_DIR/cassandra-rackdc.properties + echo "rack=$CASSANDA_RACK" >> $CONF_DIR/cassandra-rackdc.properties +fi + +# set the seed to itself. This is only for the first pod, otherwise +# it will be able to get seeds from the seed provider +# TODO allow for overiding?? Allow to racks use another racks service?? +sed -ri 's/- seeds:.*/- seeds: "'"$POD_IP"'"/' $CFG + +# send gc to stdout +if [[ $CASSANDRA_GC_STDOUT == 'true' ]]; then + sed -ri 's/ -Xloggc:\/var\/log\/cassandra\/gc\.log//' $CONF_DIR/cassandra-env.sh +fi + +# enable RMI and JMX to work on one port +echo "JVM_OPTS=\"\$JVM_OPTS -Djava.rmi.server.hostname=$POD_IP\"" >> $CONF_DIR/cassandra-env.sh + +# getting WARNING messages with Migration Service +# echo "-Dcassandra.migration_task_wait_in_seconds=${CASSANDRA_MIGRATION_WAIT}" >> $CONF_DIR/jvm.options +echo "-Dcassandra.ring_delay_ms=${CASSANDRA_RING_DELAY}" >> $CONF_DIR/jvm.options + +if [[ $CASSANDRA_OPEN_JMX == 'true' ]]; then + export LOCAL_JMX=no + sed -ri 's/ -Dcom\.sun\.management\.jmxremote\.authenticate=true/ -Dcom\.sun\.management\.jmxremote\.authenticate=false/' $CONF_DIR/cassandra-env.sh + sed -ri 's/ -Dcom\.sun\.management\.jmxremote\.password\.file=\/etc\/cassandra\/jmxremote\.password//' $CONF_DIR/cassandra-env.sh +fi + +echo "Starting Cassandra on $POD_IP" +echo CASSANDRA_RPC_ADDRESS ${CASSANDRA_RPC_ADDRESS} +echo CASSANDRA_NUM_TOKENS ${CASSANDRA_NUM_TOKENS} +echo CASSANDRA_CLUSTER_NAME ${CASSANDRA_CLUSTER_NAME} +echo CASSANDRA_LISTEN_ADDRESS ${POD_IP} +echo CASSANDRA_BROADCAST_ADDRESS ${POD_IP} +echo CASSANDRA_BROADCAST_RPC_ADDRESS ${POD_IP} + +/opt/cassandra/bin/cassandra -R -f diff --git a/pet-race-devops/docker/google-debian-openjdk8/Dockerfile b/pet-race-devops/docker/google-debian-openjdk8/Dockerfile new file mode 100644 index 0000000..6db1df8 --- /dev/null +++ b/pet-race-devops/docker/google-debian-openjdk8/Dockerfile @@ -0,0 +1,43 @@ +# Copyright 2016 The Kubernetes Authors All rights reserved. +# +# 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. + +FROM google/debian:jessie + +ADD files / + +RUN mv /java.list /etc/apt/sources.list.d/java.list \ + && apt-get update \ + && apt-get -qq -y install --no-install-recommends procps openjdk-8-jre-headless libjemalloc1 curl \ + localepurge \ + && curl -L https://github.com/Yelp/dumb-init/releases/download/v1.0.3/dumb-init_1.0.3_amd64 > /dumb-init \ + && chmod a+rx /dumb-init \ + && apt-get -y purge localepurge curl \ + && apt-get clean \ + && rm -rf \ + doc \ + man \ + info \ + locale \ + /var/lib/apt/lists/* \ + /var/log/* \ + /var/cache/debconf/* \ + common-licenses \ + ~/.bashrc \ + /etc/systemd \ + /lib/lsb \ + /lib/udev \ + /usr/share/doc/ \ + /usr/share/doc-base/ \ + /usr/share/man/ \ + /tmp/* diff --git a/pet-race-devops/docker/google-debian-openjdk8/build-local.sh b/pet-race-devops/docker/google-debian-openjdk8/build-local.sh new file mode 100755 index 0000000..b9742a3 --- /dev/null +++ b/pet-race-devops/docker/google-debian-openjdk8/build-local.sh @@ -0,0 +1,7 @@ +#!/bin/bash +VERSION=v1.0 +REPO=10.100.179.231:5000 +DOCKER="${REPO}/cassandra:${VERSION}" + +docker build -t ${DOCKER} . +docker push ${DOCKER} diff --git a/pet-race-devops/docker/google-debian-openjdk8/build.sh b/pet-race-devops/docker/google-debian-openjdk8/build.sh new file mode 100755 index 0000000..b0fdeab --- /dev/null +++ b/pet-race-devops/docker/google-debian-openjdk8/build.sh @@ -0,0 +1,41 @@ +#!/bin/bash +VERSION=v1.0 + +usage() { + echo "Usage: $0 [-p]" 1>&2; + echo " -p PROJECT_ID -d" + exit 1; +} + +if [ $? != 0 ] ; then usage ; fi + +while getopts "p:hd" o; do + case "${o}" in + p) + PROJECT_ID=${OPTARG} + ;; + d) + DEPLOY=true + ;; + h) + usage + ;; + *) + usage + ;; + esac +done +shift $((OPTIND-1)) +if [ -z "$PROJECT_ID" ]; then + usage +fi + +REPO=gcr.io/$PROJECT_ID +DOCKER="${REPO}/${PWD##*/}:${VERSION}" + +docker build -t ${DOCKER} . + +echo $DEPLOY +if [ "$DEPLOY" ]; then + gcloud docker push ${DOCKER} +fi diff --git a/pet-race-devops/docker/google-debian-openjdk8/files/java.list b/pet-race-devops/docker/google-debian-openjdk8/files/java.list new file mode 100644 index 0000000..5bf6d56 --- /dev/null +++ b/pet-race-devops/docker/google-debian-openjdk8/files/java.list @@ -0,0 +1,2 @@ +# for jre8 +deb http://http.debian.net/debian jessie-backports main diff --git a/pet-race-devops/docker/py3numpy/Dockerfile b/pet-race-devops/docker/py3numpy/Dockerfile index f58bbe0..5f39084 100644 --- a/pet-race-devops/docker/py3numpy/Dockerfile +++ b/pet-race-devops/docker/py3numpy/Dockerfile @@ -6,9 +6,6 @@ FROM alpine:3.4 # > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK. ENV LANG=C.UTF-8 GPG_KEY=97FC712E4C024BBEA48A61ED3A5CA953F73C700D PYTHON_VERSION=3.4.4 PYTHON_PIP_VERSION=8.1.2 -# Don't think we need this anymore -# ADD repositories /etc/apk/repositories - RUN set -ex \ && apk add --no-cache --virtual .fetch-deps curl gnupg \ && curl -fSL "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz" -o python.tar.xz \ @@ -34,15 +31,15 @@ RUN set -ex \ readline-dev \ xz-dev \ zlib-dev \ + ca-certificates \ && cd /usr/src/python \ && ./configure --enable-shared --enable-unicode=ucs4 \ && make -j$(getconf _NPROCESSORS_ONLN) \ && make install \ && pip3 install --no-cache-dir --upgrade --ignore-installed pip==$PYTHON_PIP_VERSION \ && pip3 install numpy==1.9.3 pip==$PYTHON_PIP_VERSION \ - && pip3 install nose sphinx \ - && pip3 install cassandra-driver scales pip==$PYTHON_PIP_VERSION \ - && pip3 install scales \ + && pip3 install scales pip==$PYTHON_PIP_VERSION \ + && pip3 install cassandra-driver pip==$PYTHON_PIP_VERSION \ && find /usr/local -depth \ \( \ \( -type d -a -name test -o -name tests \) \ @@ -58,7 +55,7 @@ RUN set -ex \ )" \ && apk add --virtual .python-rundeps $runDeps \ && apk del .build-deps \ - && rm -rf /usr/src/python ~/.cache + && rm -rf /usr/src/python ~/.cache \ && cd /usr/local/bin \ && ln -s easy_install-3.4 easy_install \ && ln -s idle3 idle \ diff --git a/pet-race-devops/docker/py3numpy/build-local.sh b/pet-race-devops/docker/py3numpy/build-local.sh new file mode 100755 index 0000000..e376ef1 --- /dev/null +++ b/pet-race-devops/docker/py3numpy/build-local.sh @@ -0,0 +1,7 @@ +#!/bin/bash +VERSION=v1.0 +REPO=10.100.179.231:5000 +DOCKER="${REPO}/py3numpy-dev:${VERSION}" + +docker build -t ${DOCKER} . +docker push ${DOCKER} \ No newline at end of file diff --git a/pet-race-devops/docker/py3numpy/build.sh b/pet-race-devops/docker/py3numpy/build.sh index e376ef1..b0fdeab 100755 --- a/pet-race-devops/docker/py3numpy/build.sh +++ b/pet-race-devops/docker/py3numpy/build.sh @@ -1,7 +1,41 @@ #!/bin/bash VERSION=v1.0 -REPO=10.100.179.231:5000 -DOCKER="${REPO}/py3numpy-dev:${VERSION}" + +usage() { + echo "Usage: $0 [-p]" 1>&2; + echo " -p PROJECT_ID -d" + exit 1; +} + +if [ $? != 0 ] ; then usage ; fi + +while getopts "p:hd" o; do + case "${o}" in + p) + PROJECT_ID=${OPTARG} + ;; + d) + DEPLOY=true + ;; + h) + usage + ;; + *) + usage + ;; + esac +done +shift $((OPTIND-1)) +if [ -z "$PROJECT_ID" ]; then + usage +fi + +REPO=gcr.io/$PROJECT_ID +DOCKER="${REPO}/${PWD##*/}:${VERSION}" docker build -t ${DOCKER} . -docker push ${DOCKER} \ No newline at end of file + +echo $DEPLOY +if [ "$DEPLOY" ]; then + gcloud docker push ${DOCKER} +fi diff --git a/pet-race-devops/docker/py3numpy/repositories b/pet-race-devops/docker/py3numpy/repositories deleted file mode 100644 index 4890312..0000000 --- a/pet-race-devops/docker/py3numpy/repositories +++ /dev/null @@ -1,2 +0,0 @@ -http://dl-4.alpinelinux.org/alpine/v3.2/main -@testing http://dl-4.alpinelinux.org/alpine/edge/testing diff --git a/pet-race-devops/gce/k8s-1k.sh b/pet-race-devops/gce/k8s-1k.sh index 2aa6569..7ff87e4 100755 --- a/pet-race-devops/gce/k8s-1k.sh +++ b/pet-race-devops/gce/k8s-1k.sh @@ -6,7 +6,7 @@ # - allow tweaking of Node disks # - which node distro?? # -KUBE_RELEASE=v1.3.0-alpha.5 +KUBE_RELEASE=v1.3.0-beta.1 KUBE_ROOT=kubernetes export NUM_NODES=${NUM_NODES:-334} @@ -14,16 +14,15 @@ export NUM_NODES_2=${NUM_NODES_2:-333} export NUM_NODES_3=${NUM_NODES_3:-333} export MULTIZONE=${MULTIZONE:0} - export MASTER_SIZE=${MASTER_SIZE:-n1-standard-32} export NODE_SIZE=${NODE_SIZE:-n1-standard-4} export KUBE_GCE_ZONE=${KUBE_GCE_ZONE:-us-central1-b} export KUBE_GCE_ZONE_2=${KUBE_GCE_ZONE_2:-us-central1-f} export KUBE_GCE_ZONE_3=${KUBE_GCE_ZONE_3:-us-central1-c} -export KUBE_ENABLE_CLUSTER_MONITORING=google -#export MASTER_DISK_SIZE=${MASTER_DISK_SIZE:-100GB} -#export NODE_DISK_TYPE=${NODE_DISK_TYPE:-pd-ssd} -#export NODE_DISK_SIZE=${NODE_DISK_SIZE:-400GB} +#export KUBE_ENABLE_CLUSTER_MONITORING=google +#export MASTER_DISK_SIZE=${MASTER_DISK_SIZE:-40GB} +#export NODE_DISK_TYPE=${NODE_DISK_TYPE:-local-ssd} +#export NODE_DISK_SIZE=${NODE_DISK_SIZE:-100GB} export KUBE_OS_DISTRIBUTION=${KUBE_OS_DISTRIBUTION:-gci} # This is to avoid full cluster turnup failing if a handful of nodes aren't healthy diff --git a/pet-race-devops/k8s/cassandra/cassandra-petset-gce.yaml b/pet-race-devops/k8s/cassandra/cassandra-petset-gce.yaml index 1b56bf9..c64b5f6 100644 --- a/pet-race-devops/k8s/cassandra/cassandra-petset-gce.yaml +++ b/pet-race-devops/k8s/cassandra/cassandra-petset-gce.yaml @@ -14,7 +14,8 @@ spec: spec: containers: - name: cassandra - image: "gcr.io/aronchick-apollobit/cassandra-22:v1.0" + #image: "gcr.io/aronchick-apollobit/cassandra-22:v1.0" + image: "gcr.io/aronchick-apollobit/cassandra-debian-custom:v1.0" imagePullPolicy: Always ports: - containerPort: 7000