Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make timestamps more readable in logs #234

Merged
merged 2 commits into from
Nov 4, 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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ CHANGELOG
=========

## HEAD (Unreleased)
(None)
- Default timestamps are now iso8601 in logs. Remove `"--zap-time-encoding=iso8601"` line from deployment spec to revert to old timestamps [#234](https://github.com/pulumi/pulumi-kubernetes-operator/pull/234)

## 1.1.0 (2021-10-27)
- Avoid double install of dependencies [#230](https://github.com/pulumi/pulumi-kubernetes-operator/pull/230)
Expand Down
1 change: 1 addition & 0 deletions deploy/operator_template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ spec:
image: <IMG_NAME>:<IMG_VERSION>
args:
- "--zap-level=error"
- "--zap-time-encoding=iso8601"
volumeMounts:
- mountPath: /tmp
name: tmp-dir
Expand Down
1 change: 1 addition & 0 deletions deploy/yaml/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ spec:
image: pulumi/pulumi-kubernetes-operator:v1.1.0
args:
- "--zap-level=error"
- "--zap-time-encoding=iso8601"
volumeMounts:
- mountPath: /tmp
name: tmp-dir
Expand Down