Skip to content
This repository has been archived by the owner on Aug 7, 2024. It is now read-only.

Commit

Permalink
fix linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
christodo committed Oct 22, 2020
1 parent d101d58 commit f8a7182
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 22 deletions.
6 changes: 3 additions & 3 deletions .github/ct.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#helm-extra-args: --timeout 600
#check-version-increment: true
#debug: true
helm-extra-args: --timeout 600
check-version-increment: true
debug: true
40 changes: 21 additions & 19 deletions charts/dvpe-deployment-gloo/values.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
# Values for default microservice projects

# secret.yaml value section
# -------------------------------#
# secret.yaml value section #
# -------------------------------#
externalSecrets:
service:
# externalSecrets.service.key -- `Key` to AWS Secret Manager object where all sensitive application data should be stored. Each key in the Secret Manager Object should be named like your needed environment variable
key:

#-------------------------------
# deployment.yaml value section
#-------------------------------
# -------------------------------#
# deployment.yaml value section #
# -------------------------------#
deployment:
# deployment.podAnnotations -- List of additional `podAnnotations`.
podAnnotations:
Expand Down Expand Up @@ -59,9 +61,9 @@ deployment:
# deployment.spec.resources.requests.memory -- Amount of memory reserved for a Pod. See [Managing Compute Resources for Containers](https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/) for a detailed description on resource usage.
memory: 200M

#-------------------------------#
# -------------------------------#
# service.yaml value section #
#-------------------------------#
# -------------------------------#
service:
spec:
# service.spec.type -- Specify what kind of service to deploy. See [Kubernetes Service Spec](https://kubernetes.io/docs/concepts/services-networking/service/) for details
Expand All @@ -78,9 +80,9 @@ service:
# service.spec.ports.https.targetPort -- The http port the service listens to and to which requests will be sent.
targetPort: "443"

#--------------------------------#
# --------------------------------#
# autoscaling.yaml value section #
#--------------------------------#
# --------------------------------#
autoscaling:
# autoscaling.maxReplicas -- Defines `maxReplicas` of Pods scaled automatically by Horizontal Pod Autoscaler (HPA).
maxReplicas: 5
Expand All @@ -92,9 +94,9 @@ autoscaling:
# autoscaling.metrics.resource.cpu.targetAverageUtilization -- Defines cpu utilization threshold in % for the HPA to scale up new pods.
targetAverageUtilization: 80

#-------------------------------------#
# -------------------------------------#
# Extension param value section #
#-------------------------------------#
# -------------------------------------#
additionalparameters:
# additionalparameters.configMapApplied -- Set to `true` if you want to add a custom `ConfigMap` for your deployment.
configMapApplied: false
Expand All @@ -103,9 +105,9 @@ additionalparameters:
# additionalparameters.yamlConfigFileApplied -- Set to `true` if you want to add a custom yaml configuration for your deployment.
yamlConfigFileApplied: false

#-------------------------------------#
# Gloo (api gateway) value section #
#-------------------------------------#
# -------------------------------------#
# Gloo (api gateway) value section #
# -------------------------------------#
gloo:
# gloo.enabled -- When set to true only the application's deployment resources will be installed with this chart. Can be used to explicitly avoid deploying a VirtualService resource.
enabled: true
Expand Down Expand Up @@ -161,9 +163,9 @@ gloo:
# gloo.authConfig.spec.configs.additionalPlugins -- List of plugins which should be added to the plugin chain. Expected format is a valid yaml with the `pluginAuth`. See [gloo Plugin Auth](https://docs.solo.io/gloo/latest/guides/security/auth/extauth/plugin_auth/#create-an-authconfig-resource) for details
additionalPlugins:

#-------------------------------------#
# DataDog value section #
#-------------------------------------#
# -------------------------------------#
# DataDog value section #
# -------------------------------------#
datadog:
# datadog.enabled -- When set to true Datadog is enabled and all logs, metrics and traces will be sent to Datadog.
enabled: true
Expand All @@ -172,9 +174,9 @@ datadog:
# datadog.team -- Label in Datadog for the responsible team
team:

#-------------------------------------#
# Istio value section #
#-------------------------------------#
# -------------------------------------#
# Istio value section #
# -------------------------------------#
istio:
# istio.enabled -- Enables mtls per workload (pod)
enabled: true
Expand Down

0 comments on commit f8a7182

Please sign in to comment.