Skip to content

Commit b0e982d

Browse files
coreydaleyjdamata
andauthored
Add support for hostAliases (#234)
* Add support for hostAliases Signed-off-by: Joel Damata <[email protected]> * bump chart version and run pre-commit Signed-off-by: Corey Daley <[email protected]> --------- Signed-off-by: Joel Damata <[email protected]> Signed-off-by: Corey Daley <[email protected]> Co-authored-by: Joel Damata <[email protected]>
1 parent 560f425 commit b0e982d

File tree

6 files changed

+57
-2
lines changed

6 files changed

+57
-2
lines changed

charts/backstage/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ sources:
3838
# This is the chart version. This version number should be incremented each time you make changes
3939
# to the chart and its templates, including the app version.
4040
# Versions are expected to follow Semantic Versioning (https://semver.org/)
41-
version: 2.1.0
41+
version: 2.2.0

charts/backstage/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Backstage Helm Chart
33

44
[![Artifact Hub](https://img.shields.io/endpoint?url=https://artifacthub.io/badge/repository/backstage)](https://artifacthub.io/packages/search?repo=backstage)
5-
![Version: 2.1.0](https://img.shields.io/badge/Version-2.1.0-informational?style=flat-square)
5+
![Version: 2.2.0](https://img.shields.io/badge/Version-2.2.0-informational?style=flat-square)
66
![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
77

88
A Helm chart for deploying a Backstage application
@@ -127,6 +127,7 @@ Kubernetes: `>= 1.19.0-0`
127127
| backstage.extraEnvVarsSecrets | Backstage container environment variables from existing Secrets | list | `[]` |
128128
| backstage.extraVolumeMounts | Backstage container additional volume mounts | list | `[]` |
129129
| backstage.extraVolumes | Backstage container additional volumes | list | `[]` |
130+
| backstage.hostAliases | Host Aliases for the pod <br /> Ref: https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/ | list | `[]` |
130131
| backstage.image.digest | Backstage image digest (digest takes precedence over image tag) | string | `""` |
131132
| backstage.image.pullPolicy | Specify a imagePullPolicy. Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' <br /> Ref: https://kubernetes.io/docs/concepts/containers/images/#image-pull-policy | string | `"Always"` |
132133
| backstage.image.pullSecrets | Optionally specify an array of imagePullSecrets. Secrets must be manually created in the namespace. <br /> Ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ <br /> E.g: `pullSecrets: [myRegistryKeySecretName]` | list | `[]` |

charts/backstage/templates/backstage-deployment.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@ spec:
5959
tolerations:
6060
{{- include "common.tplvalues.render" ( dict "value" .Values.backstage.tolerations "context" $) | nindent 8 }}
6161
{{- end }}
62+
{{- if .Values.backstage.hostAliases }}
63+
hostAliases:
64+
{{- include "common.tplvalues.render" ( dict "value" .Values.backstage.hostAliases "context" $) | nindent 8 }}
65+
{{- end }}
6266
volumes:
6367
{{- if (or .Values.backstage.extraAppConfig (and .Values.backstage.extraVolumeMounts .Values.backstage.extraVolumes)) }}
6468
{{- range .Values.backstage.extraAppConfig }}

charts/backstage/values.schema.json

+37
Original file line numberDiff line numberDiff line change
@@ -1430,6 +1430,7 @@
14301430
"type": "integer"
14311431
},
14321432
"grpc": {
1433+
"description": "GRPCAction specifies an action involving a GRPC service.",
14331434
"properties": {
14341435
"port": {
14351436
"description": "Port number of the gRPC service. Number must be in the range 1 to 65535.",
@@ -1620,6 +1621,7 @@
16201621
"type": "integer"
16211622
},
16221623
"grpc": {
1624+
"description": "GRPCAction specifies an action involving a GRPC service.",
16231625
"properties": {
16241626
"port": {
16251627
"description": "Port number of the gRPC service. Number must be in the range 1 to 65535.",
@@ -2002,6 +2004,7 @@
20022004
"type": "integer"
20032005
},
20042006
"grpc": {
2007+
"description": "GRPCAction specifies an action involving a GRPC service.",
20052008
"properties": {
20062009
"port": {
20072010
"description": "Port number of the gRPC service. Number must be in the range 1 to 65535.",
@@ -2979,6 +2982,7 @@
29792982
"x-kubernetes-map-type": "atomic"
29802983
},
29812984
"dataSourceRef": {
2985+
"description": "TypedObjectReference contains enough information to let you locate the typed referenced object",
29822986
"properties": {
29832987
"apiGroup": {
29842988
"description": "APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required.",
@@ -3978,6 +3982,33 @@
39783982
"title": "Backstage container additional volumes",
39793983
"type": "array"
39803984
},
3985+
"hostAliases": {
3986+
"default": [],
3987+
"description": "Ref: https://kubernetes.io/docs/tasks/network/customize-hosts-file-for-pods/#adding-additional-entries-with-hostaliases",
3988+
"items": {
3989+
"description": "HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.",
3990+
"properties": {
3991+
"hostnames": {
3992+
"description": "Hostnames for the above IP address.",
3993+
"items": {
3994+
"type": "string"
3995+
},
3996+
"type": "array",
3997+
"x-kubernetes-list-type": "atomic"
3998+
},
3999+
"ip": {
4000+
"description": "IP address of the host file entry.",
4001+
"type": "string"
4002+
}
4003+
},
4004+
"required": [
4005+
"ip"
4006+
],
4007+
"type": "object"
4008+
},
4009+
"title": "Adding entries to a Pod's /etc/hosts file provides Pod-level override of hostname resolution when DNS and other options are not applicable",
4010+
"type": "array"
4011+
},
39814012
"image": {
39824013
"additionalProperties": false,
39834014
"properties": {
@@ -4480,6 +4511,7 @@
44804511
"type": "integer"
44814512
},
44824513
"grpc": {
4514+
"description": "GRPCAction specifies an action involving a GRPC service.",
44834515
"properties": {
44844516
"port": {
44854517
"description": "Port number of the gRPC service. Number must be in the range 1 to 65535.",
@@ -4670,6 +4702,7 @@
46704702
"type": "integer"
46714703
},
46724704
"grpc": {
4705+
"description": "GRPCAction specifies an action involving a GRPC service.",
46734706
"properties": {
46744707
"port": {
46754708
"description": "Port number of the gRPC service. Number must be in the range 1 to 65535.",
@@ -5052,6 +5085,7 @@
50525085
"type": "integer"
50535086
},
50545087
"grpc": {
5088+
"description": "GRPCAction specifies an action involving a GRPC service.",
50555089
"properties": {
50565090
"port": {
50575091
"description": "Port number of the gRPC service. Number must be in the range 1 to 65535.",
@@ -5310,6 +5344,7 @@
53105344
"type": "integer"
53115345
},
53125346
"grpc": {
5347+
"description": "GRPCAction specifies an action involving a GRPC service.",
53135348
"properties": {
53145349
"port": {
53155350
"description": "Port number of the gRPC service. Number must be in the range 1 to 65535.",
@@ -5631,6 +5666,7 @@
56315666
"type": "integer"
56325667
},
56335668
"grpc": {
5669+
"description": "GRPCAction specifies an action involving a GRPC service.",
56345670
"properties": {
56355671
"port": {
56365672
"description": "Port number of the gRPC service. Number must be in the range 1 to 65535.",
@@ -5846,6 +5882,7 @@
58465882
"type": "integer"
58475883
},
58485884
"grpc": {
5885+
"description": "GRPCAction specifies an action involving a GRPC service.",
58495886
"properties": {
58505887
"port": {
58515888
"description": "Port number of the gRPC service. Number must be in the range 1 to 65535.",

charts/backstage/values.schema.tmpl.json

+9
Original file line numberDiff line numberDiff line change
@@ -574,6 +574,15 @@
574574
},
575575
"default": []
576576
},
577+
"hostAliases": {
578+
"title": "Adding entries to a Pod's /etc/hosts file provides Pod-level override of hostname resolution when DNS and other options are not applicable",
579+
"description": "Ref: https://kubernetes.io/docs/tasks/network/customize-hosts-file-for-pods/#adding-additional-entries-with-hostaliases",
580+
"type": "array",
581+
"items": {
582+
"$ref": "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/master/_definitions.json#/definitions/io.k8s.api.core.v1.HostAlias"
583+
},
584+
"default": []
585+
},
577586
"podAnnotations": {
578587
"title": "Annotations to add to the backend deployment pods",
579588
"type": "object",

charts/backstage/values.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -278,6 +278,10 @@ backstage:
278278
# value: "value"
279279
# effect: "NoSchedule|PreferNoSchedule|NoExecute"
280280

281+
# -- Host Aliases for the pod
282+
# <br /> Ref: https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
283+
hostAliases: []
284+
281285
# -- Annotations to add to the backend deployment pods
282286
podAnnotations: {}
283287

0 commit comments

Comments
 (0)