Releases: oshalygin/k8s-config
Releases · oshalygin/k8s-config
1.2.0
This release supports deployment files with environment variables that are set through fieldRef
.
Previously, this was supported:
- name: GCLOUD_PROJECT
valueFrom:
secretKeyRef:
name: env-variables-secret
key: gcloud_project
- name: GCLOUD_DIAGNOSTICS_CONFIG
value: ./utilities/trace.js
However, in 1.1.0
, this would fail to parse:
- name: POD_ID
valueFrom:
fieldRef:
fieldPath: metadata.name
With this release, all three formats are now supported.
1.1.0
This release supports deployment files with environment variables that are set through value
, not just through Kubernetes secrets
Previously, this was supported:
- name: GCLOUD_PROJECT
valueFrom:
secretKeyRef:
name: env-variables-secret
key: gcloud_project
However, in 1.0.0
, this would fail to parse:
- name: GCLOUD_DIAGNOSTICS_CONFIG
value: ./utilities/trace.js
With this release, both formats are now supported.