Skip to content

1.2.0

Latest
Compare
Choose a tag to compare
@oshalygin oshalygin released this 10 Aug 05:26
· 1 commit to master since this release

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.