forked from GoogleCloudPlatform/cloud-sql-proxy-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeployment-mssql-tcp.yaml
124 lines (121 loc) · 4.41 KB
/
deployment-mssql-tcp.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
# Copyright 2023 Google LLC.
#
# 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 example demonstrates how to use environment variables set by the
# Cloud SQL Proxy Operator to connect to your database.
##
# Create an AuthProxyWorkload to hold the configuration for your
# Cloud SQL Proxy containers.
apiVersion: cloudsql.cloud.google.com/v1
kind: AuthProxyWorkload
metadata:
name: authproxyworkload-sample
spec:
authProxyContainer:
# Resource configuration depends on an application's requirements. You
# should adjust the following values based on what your application
# needs. For details, see https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
resources:
requests:
# The proxy's CPU use scales linearly with the amount of IO between
# the database and the application. Adjust this value based on your
# application's requirements.
cpu: "1"
# The proxy's memory use scales linearly with the number of active
# connections. Fewer open connections will use less memory. Adjust
# this value based on your application's requirements.
memory: "2Gi"
workloadSelector:
kind: "Deployment" # Applies to a "Deployment"
name: "gke-cloud-sql-app" # named 'gke-cloud-sql-app'
instances:
- connectionString: "my-project:us-central1:instance" # from your Cloud SQL Database instance
portEnvName: "DB_PORT" # Will set an env var named 'DB_PORT' to the database port
hostEnvName: "DB_HOST" # Will set an env var named 'DB_HOST' to the proxy's host, 127.0.0.1
---
##
# Put the database name, username, and password into a kubernetes secret
# Update the values below as needed for your environment
#
# WARNING: Do not store passwords in a source code file. It is a bad
# way to keep your secrets safe.
#
# Instead, use kubectl to create the secret using an interactive command
# so that your password is not stored in your source code.
#
# kubectl create secret generic gke-cloud-sql-operator-demo \
# --from-literal=DB_NAME=your_db_name \
# --from-literal=DB_USER=your_db_user \
# --from-literal=DB_PASS=your_db_password
#
apiVersion: v1
kind: Secret
metadata:
name: gke-cloud-sql-operator-demo
type: Opaque
data:
DB_PASS: cGFzc3dvcmQ= # "password"
DB_NAME: cG9zdGdyZXM= # "postgres"
DB_USER: dGVzdHVzZXI= # "testuser"
---
##
# Create a deployment for your application that uses environment variables
# set by the proxy to connect to the database.
apiVersion: apps/v1
kind: Deployment
metadata:
name: gke-cloud-sql-app
spec:
selector:
matchLabels:
app: gke-cloud-sql-app
template:
metadata:
labels:
app: gke-cloud-sql-app
spec:
containers:
- name: gke-cloud-sql-app
image: mcr.microsoft.com/mssql-tools
livenessProbe:
initialDelaySeconds: 60
periodSeconds: 30
failureThreshold: 3
exec:
command: ["/bin/sh", "-x", "-c", "/opt/mssql-tools/bin/sqlcmd -S \"tcp:$DB_HOST,$DB_PORT\" -U $DB_USER -P $DB_PASS -Q \"use $DB_NAME ; select 1 ;\""]
command:
- "/bin/sh"
- "-e"
- "-c"
- "sleep 10 ; /opt/mssql-tools/bin/sqlcmd -S \"tcp:$DB_HOST,$DB_PORT\" -U $DB_USER -P $DB_PASS -Q \"use $DB_NAME ; select 1 ;\" ; sleep 3600"
env:
- name: DB_HOST
value: "set-by-operator"
- name: DB_PORT
value: "set-by-operator"
- name: DB_USER
valueFrom:
secretKeyRef:
name: gke-cloud-sql-operator-demo
key: DB_USER
- name: DB_PASS
valueFrom:
secretKeyRef:
name: gke-cloud-sql-operator-demo
key: DB_PASS
- name: DB_NAME
valueFrom:
secretKeyRef:
name: gke-cloud-sql-operator-demo
key: DB_NAME