Skip to content

Commit

Permalink
Clarify k8s version in tag name (#100)
Browse files Browse the repository at this point in the history
Having only 2 numbers as the tag name is confusing (eg `0.8.3-1.8` or `0.8-1.8` or `1.8`).
Better to make it clear second number is the k8s version (eg `0.8.3-k8s-1.8` or `0.8-k8s-1.8` or `k8s-1.8`).
  • Loading branch information
tonglil authored Sep 12, 2018
1 parent ebad82e commit 8eccb28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,13 @@ pipeline:
publish_1_8:
<<: *publish_config
auto_tag: true
auto_tag_suffix: "1.8"
auto_tag_suffix: "k8s-1.8"
dockerfile: Dockerfile.1.8

publish_1_9:
<<: *publish_config
auto_tag: true
auto_tag_suffix: "1.9"
auto_tag_suffix: "k8s-1.9"
dockerfile: Dockerfile.1.9

slack:
Expand Down

0 comments on commit 8eccb28

Please sign in to comment.