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

Rename lifecycle-sidecar to consul-sidecar #810

Merged
merged 1 commit into from
Feb 9, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ BREAKING CHANGES:

See [Upgrade to CRDs](https://www.consul.io/docs/k8s/crds/upgrade-to-crds)
for more information on how to upgrade.
* The lifecycle-sidecar command and container has been renamed to
consul-sidecar. The Helm value `global.lifecycleSidecarContainer` has been
renamed to `global.consulSidecarContainer`.
`global.lifecycleSidecarContainer` is no longer supported and will cause
errors on `helm upgrade`. Please use `global.consulSidecarContainer` instead.
[[GH-810](https://github.com/hashicorp/consul-helm/pull/810)]

IMPROVEMENTS:
* Add ability to set extra labels on Consul client pods. [[GH-612](https://github.com/hashicorp/consul-helm/pull/612)]
Expand Down
21 changes: 11 additions & 10 deletions templates/connect-inject-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
{{- if .Values.connectInject.centralConfig }}{{- if .Values.connectInject.centralConfig.defaultProtocol }}{{ fail "connectInject.centralConfig.defaultProtocol is no longer supported; instead you must migrate to CRDs (see www.consul.io/docs/k8s/crds/upgrade-to-crds)" }}{{ end }}{{ end -}}
{{- if .Values.connectInject.centralConfig }}{{ if .Values.connectInject.centralConfig.proxyDefaults }}{{- if ne (trim .Values.connectInject.centralConfig.proxyDefaults) `{}` }}{{ fail "connectInject.centralConfig.proxyDefaults is no longer supported; instead you must migrate to CRDs (see www.consul.io/docs/k8s/crds/upgrade-to-crds)" }}{{ end }}{{ end }}{{ end -}}
{{- if .Values.connectInject.imageEnvoy }}{{ fail "connectInject.imageEnvoy must be specified in global.imageEnvoy" }}{{ end }}
{{- if .Values.global.lifecycleSidecarContainer }}{{ fail "global.lifecycleSidecarContainer has been renamed to global.consulSidecarContainer. Please set values using global.consulSidecarContainer." }}{{ end }}
# The deployment for running the Connect sidecar injector
apiVersion: apps/v1
kind: Deployment
Expand Down Expand Up @@ -163,19 +164,19 @@ spec:
{{- end }}
{{- end }}

{{- if .Values.global.lifecycleSidecarContainer }}
{{- $lifecycleResources := .Values.global.lifecycleSidecarContainer.resources }}
{{- if not (kindIs "invalid" $lifecycleResources.limits.memory) }}
-lifecycle-sidecar-memory-limit={{ $lifecycleResources.limits.memory }} \
{{- if .Values.global.consulSidecarContainer }}
{{- $consulSidecarResources := .Values.global.consulSidecarContainer.resources }}
{{- if not (kindIs "invalid" $consulSidecarResources.limits.memory) }}
-consul-sidecar-memory-limit={{ $consulSidecarResources.limits.memory }} \
{{- end }}
{{- if not (kindIs "invalid" $lifecycleResources.requests.memory) }}
-lifecycle-sidecar-memory-request={{ $lifecycleResources.requests.memory }} \
{{- if not (kindIs "invalid" $consulSidecarResources.requests.memory) }}
-consul-sidecar-memory-request={{ $consulSidecarResources.requests.memory }} \
{{- end }}
{{- if not (kindIs "invalid" $lifecycleResources.limits.cpu) }}
-lifecycle-sidecar-cpu-limit={{ $lifecycleResources.limits.cpu }} \
{{- if not (kindIs "invalid" $consulSidecarResources.limits.cpu) }}
-consul-sidecar-cpu-limit={{ $consulSidecarResources.limits.cpu }} \
{{- end }}
{{- if not (kindIs "invalid" $lifecycleResources.requests.cpu) }}
-lifecycle-sidecar-cpu-request={{ $lifecycleResources.requests.cpu }} \
{{- if not (kindIs "invalid" $consulSidecarResources.requests.cpu) }}
-consul-sidecar-cpu-request={{ $consulSidecarResources.requests.cpu }} \
{{- end }}
{{- end }}
livenessProbe:
Expand Down
13 changes: 7 additions & 6 deletions templates/ingress-gateways-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
{{- if not .Values.connectInject.enabled }}{{ fail "connectInject.enabled must be true" }}{{ end -}}
{{- if not .Values.client.grpc }}{{ fail "client.grpc must be true" }}{{ end -}}
{{- if not (or (and (ne (.Values.client.enabled | toString) "-") .Values.client.enabled) (and (eq (.Values.client.enabled | toString) "-") .Values.global.enabled)) }}{{ fail "clients must be enabled" }}{{ end -}}
{{- if .Values.global.lifecycleSidecarContainer }}{{ fail "global.lifecycleSidecarContainer has been renamed to global.consulSidecarContainer. Please set values using global.consulSidecarContainer." }}{{ end }}

{{- $root := . }}
{{- $defaults := .Values.ingressGateways.defaults }}
Expand Down Expand Up @@ -366,9 +367,9 @@ spec:
{{- end }}
-id="${POD_NAME}"

# lifecycle-sidecar ensures the ingress gateway is always registered with
# consul-sidecar ensures the ingress gateway is always registered with
# the local Consul agent, even if it loses the initial registration.
- name: lifecycle-sidecar
- name: consul-sidecar
image: {{ $root.Values.global.imageK8S }}
volumeMounts:
- name: consul-service
Expand All @@ -385,9 +386,9 @@ spec:
mountPath: /consul/tls/ca
readOnly: true
{{- end }}
{{- if $root.Values.global.lifecycleSidecarContainer }}
{{- if $root.Values.global.lifecycleSidecarContainer.resources }}
resources: {{ toYaml $root.Values.global.lifecycleSidecarContainer.resources | nindent 12 }}
{{- if $root.Values.global.consulSidecarContainer }}
{{- if $root.Values.global.consulSidecarContainer.resources }}
resources: {{ toYaml $root.Values.global.consulSidecarContainer.resources | nindent 12 }}
{{- end }}
{{- end }}
env:
Expand All @@ -410,7 +411,7 @@ spec:
{{- end }}
command:
- consul-k8s
- lifecycle-sidecar
- consul-sidecar
- -service-config=/consul/service/service.hcl
- -consul-binary=/consul-bin/consul
{{- if $root.Values.global.acls.manageSystemACLs }}
Expand Down
13 changes: 7 additions & 6 deletions templates/mesh-gateway-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
{{- if and .Values.global.acls.manageSystemACLs (ne .Values.meshGateway.consulServiceName "") (ne .Values.meshGateway.consulServiceName "mesh-gateway") }}{{ fail "if global.acls.manageSystemACLs is true, meshGateway.consulServiceName cannot be set" }}{{ end -}}
{{- if .Values.meshGateway.imageEnvoy }}{{ fail "meshGateway.imageEnvoy must be specified in global.imageEnvoy" }}{{ end -}}
{{- if .Values.meshGateway.globalMode }}{{ fail "meshGateway.globalMode is no longer supported; instead, you must migrate to CRDs (see www.consul.io/docs/k8s/crds/upgrade-to-crds)" }}{{ end -}}
{{- if .Values.global.lifecycleSidecarContainer }}{{ fail "global.lifecycleSidecarContainer has been renamed to global.consulSidecarContainer. Please set values using global.consulSidecarContainer." }}{{ end }}
{{- /* The below test checks if clients are disabled (and if so, fails). We use the conditional from other client files and prepend 'not' */ -}}
{{- if not (or (and (ne (.Values.client.enabled | toString) "-") .Values.client.enabled) (and (eq (.Values.client.enabled | toString) "-") .Values.global.enabled)) }}{{ fail "clients must be enabled" }}{{ end -}}
apiVersion: apps/v1
Expand Down Expand Up @@ -311,9 +312,9 @@ spec:
exec:
command: ["/bin/sh", "-ec", "/consul-bin/consul services deregister -id=\"{{ .Values.meshGateway.consulServiceName }}\""]

# lifecycle-sidecar ensures the mesh gateway is always registered with
# consul-sidecar ensures the mesh gateway is always registered with
# the local Consul agent, even if it loses the initial registration.
- name: lifecycle-sidecar
- name: consul-sidecar
image: {{ .Values.global.imageK8S }}
volumeMounts:
- name: consul-service
Expand All @@ -330,9 +331,9 @@ spec:
mountPath: /consul/tls/ca
readOnly: true
{{- end }}
{{- if .Values.global.lifecycleSidecarContainer }}
{{- if .Values.global.lifecycleSidecarContainer.resources }}
resources: {{ toYaml .Values.global.lifecycleSidecarContainer.resources | nindent 12 }}
{{- if .Values.global.consulSidecarContainer }}
{{- if .Values.global.consulSidecarContainer.resources }}
resources: {{ toYaml .Values.global.consulSidecarContainer.resources | nindent 12 }}
{{- end }}
{{- end }}
env:
Expand All @@ -355,7 +356,7 @@ spec:
{{- end }}
command:
- consul-k8s
- lifecycle-sidecar
- consul-sidecar
- -service-config=/consul/service/service.hcl
- -consul-binary=/consul-bin/consul
{{- if .Values.global.acls.manageSystemACLs }}
Expand Down
13 changes: 7 additions & 6 deletions templates/terminating-gateways-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
{{- if not .Values.connectInject.enabled }}{{ fail "connectInject.enabled must be true" }}{{ end -}}
{{- if not .Values.client.grpc }}{{ fail "client.grpc must be true" }}{{ end -}}
{{- if not (or (and (ne (.Values.client.enabled | toString) "-") .Values.client.enabled) (and (eq (.Values.client.enabled | toString) "-") .Values.global.enabled)) }}{{ fail "clients must be enabled" }}{{ end -}}
{{- if .Values.global.lifecycleSidecarContainer }}{{ fail "global.lifecycleSidecarContainer has been renamed to global.consulSidecarContainer. Please set values using global.consulSidecarContainer." }}{{ end }}

{{- $root := . }}
{{- $defaults := .Values.terminatingGateways.defaults }}
Expand Down Expand Up @@ -313,9 +314,9 @@ spec:
{{- end }}
-id="${POD_NAME}"

# lifecycle-sidecar ensures the terminating gateway is always registered with
# consul-sidecar ensures the terminating gateway is always registered with
# the local Consul agent, even if it loses the initial registration.
- name: lifecycle-sidecar
- name: consul-sidecar
image: {{ $root.Values.global.imageK8S }}
volumeMounts:
- name: consul-service
Expand All @@ -332,9 +333,9 @@ spec:
mountPath: /consul/tls/ca
readOnly: true
{{- end }}
{{- if $root.Values.global.lifecycleSidecarContainer }}
{{- if $root.Values.global.lifecycleSidecarContainer.resources }}
resources: {{ toYaml $root.Values.global.lifecycleSidecarContainer.resources | nindent 12 }}
{{- if $root.Values.global.consulSidecarContainer }}
{{- if $root.Values.global.consulSidecarContainer.resources }}
resources: {{ toYaml $root.Values.global.consulSidecarContainer.resources | nindent 12 }}
{{- end }}
{{- end }}
env:
Expand All @@ -357,7 +358,7 @@ spec:
{{- end }}
command:
- consul-k8s
- lifecycle-sidecar
- consul-sidecar
- -service-config=/consul/service/service.hcl
- -consul-binary=/consul-bin/consul
{{- if $root.Values.global.acls.manageSystemACLs }}
Expand Down
4 changes: 2 additions & 2 deletions test/acceptance/framework/k8s/debug.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@ func WritePodsDebugInfoIfFailed(t *testing.T, kubectlOptions *k8s.KubectlOptions

for _, mpod := range meshGatewayPods.Items {
// Get configdump from mesh gateway, passing the discard logger since we only need these logs written to the file (below).
configDump, err := RunKubectlAndGetOutputWithLoggerE(t, kubectlOptions, terratestLogger.Discard, "exec", mpod.Name, "-c", "lifecycle-sidecar", "--", "curl", "-s", "localhost:19000/config_dump?format=json")
configDump, err := RunKubectlAndGetOutputWithLoggerE(t, kubectlOptions, terratestLogger.Discard, "exec", mpod.Name, "-c", "consul-sidecar", "--", "curl", "-s", "localhost:19000/config_dump?format=json")
if err != nil {
configDump = fmt.Sprintf("Error getting config_dump: %s: %s", err, configDump)
}
// Get cluster config from mesh gateway, passing the discard logger since we only need these logs written to the file (below).
clusters, err := RunKubectlAndGetOutputWithLoggerE(t, kubectlOptions, terratestLogger.Discard, "exec", mpod.Name, "-c", "lifecycle-sidecar", "--", "curl", "-s", "localhost:19000/clusters?format=json")
clusters, err := RunKubectlAndGetOutputWithLoggerE(t, kubectlOptions, terratestLogger.Discard, "exec", mpod.Name, "-c", "consul-sidecar", "--", "curl", "-s", "localhost:19000/clusters?format=json")
if err != nil {
clusters = fmt.Sprintf("Error getting clusters: %s: %s", err, clusters)
}
Expand Down
Loading