Skip to content

Releases: oshalygin/k8s-config

1.2.0

10 Aug 05:26
Compare
Choose a tag to compare

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

31 Jul 05:24
Compare
Choose a tag to compare

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.

1.0.0

16 Jul 05:26
Compare
Choose a tag to compare

This is the initial release of the utility.

Base functionality is included at this time to updated deployment files. No inference on the type or extension is supported. ONLY deployment types are supported at this time.

v1.0.0