catalog/sql/auth-proxy/daemonset.yaml (44 lines of code) (raw):

# Copyright 2022 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. apiVersion: apps/v1 kind: DaemonSet metadata: name: cloud-sql-auth-proxy # kpt-set: ${daemonset-name} namespace: default annotations: cnrm.cloud.google.com/blueprint: cnrm/sql/auth-proxy/v0.2.0 spec: selector: matchLabels: app: cloud-sql-auth-proxy # kpt-set: ${daemonset-name} template: metadata: labels: app: cloud-sql-auth-proxy # kpt-set: ${daemonset-name} spec: tolerations: - key: node-role.kubernetes.io/master effect: NoSchedule serviceAccountName: cloud-sql-proxy-sa # kpt-set: ${service-account-name} containers: - name: gce-proxy image: gcr.io/cloud-sql-connectors/cloud-sql-proxy:2.0.0 args: ["$(CONNECTION_NAME)", '--address=0.0.0.0', "--private-ip", "--structured-logs"] env: - name: CONNECTION_NAME value: "example-connection" # kpt-set: ${connection-name} ports: - containerPort: 5432 name: db securityContext: readOnlyRootFilesystem: true privileged: false runAsNonRoot: true runAsUser: 2 allowPrivilegeEscalation: false capabilities: drop: [all] seccompProfile: type: RuntimeDefault resources: requests: memory: "512Mi" cpu: "300m"