mirror of
				https://github.com/k3s-io/kubernetes.git
				synced 2025-10-30 05:14:54 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			61 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| # Copyright 2015 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.
 | |
| 
 | |
| # This is an example script that creates etcd clusters.
 | |
| # Vitess requires a global cluster, as well as one for each cell.
 | |
| #
 | |
| # For automatic discovery, an etcd cluster can be bootstrapped from an
 | |
| # existing cluster. In this example, we use an externally-run discovery
 | |
| # service, but you can use your own. See the etcd docs for more:
 | |
| # https://github.com/coreos/etcd/blob/v2.0.13/Documentation/clustering.md
 | |
| 
 | |
| set -e
 | |
| 
 | |
| script_root=`dirname "${BASH_SOURCE}"`
 | |
| source $script_root/env.sh
 | |
| 
 | |
| replicas=${ETCD_REPLICAS:-3}
 | |
| 
 | |
| CELLS=${CELLS:-'test'}
 | |
| cells=`echo $CELLS | tr ',' ' '`
 | |
| 
 | |
| for cell in 'global' $cells; do
 | |
|   # Generate a discovery token.
 | |
|   echo "Generating discovery token for $cell cell..."
 | |
|   discovery=$(curl -sL https://discovery.etcd.io/new?size=$replicas)
 | |
|   if [ -z "$discovery" ]; then
 | |
|     echo "Failed to get etcd discovery token for cell '$cell'."
 | |
|     exit 1
 | |
|   fi
 | |
| 
 | |
|   # Create the client service, which will load-balance across all replicas.
 | |
|   echo "Creating etcd service for $cell cell..."
 | |
|   cat etcd-service-template.yaml | \
 | |
|     sed -e "s/{{cell}}/$cell/g" | \
 | |
|     $KUBECTL create -f -
 | |
| 
 | |
|   # Expand template variables
 | |
|   sed_script=""
 | |
|   for var in cell discovery replicas; do
 | |
|     sed_script+="s,{{$var}},${!var},g;"
 | |
|   done
 | |
| 
 | |
|   # Create the replication controller.
 | |
|   echo "Creating etcd replicationcontroller for $cell cell..."
 | |
|   cat etcd-controller-template.yaml | sed -e "$sed_script" | $KUBECTL create -f -
 | |
| done
 | |
| 
 |