Skip to content

Commit

Permalink
Add fixed version suffix -v0.7.0 to all templates
Browse files Browse the repository at this point in the history
This is a slight update to the recent patch that removed release
specific suffixes from template names. That fix forgot to take
into account the existing deployments that were done using SSP
operator and HCO.

The last version released via those channels was -v0.7.0 and
so to make upgrades from that release possible, I am readding
the suffix statically.

This can be interpreted as a version in which the template was
first officially released.

v0.7.0 is also the first version that appeared in a product
that fully supports upgrades. All versions prior that were
always static and had no upgrade guarantees.

Signed-off-by: Martin Sivak <[email protected]>
  • Loading branch information
MarSik committed Nov 11, 2019
1 parent 86642b5 commit 6602185
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion templates/centos6.tpl.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: template.openshift.io/v1
kind: Template
metadata:
name: {{ os }}-{{ item.workload }}-{{ item.flavor }}
name: {{ os }}-{{ item.workload }}-{{ item.flavor }}-v0.7.0
annotations:
openshift.io/display-name: "CentOS 6.0+ VM"
description: >-
Expand Down
2 changes: 1 addition & 1 deletion templates/centos7.tpl.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: template.openshift.io/v1
kind: Template
metadata:
name: {{ os }}-{{ item.workload }}-{{ item.flavor }}
name: {{ os }}-{{ item.workload }}-{{ item.flavor }}-v0.7.0
annotations:
openshift.io/display-name: "CentOS 7.0+ VM"
description: >-
Expand Down
2 changes: 1 addition & 1 deletion templates/fedora.tpl.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: template.openshift.io/v1
kind: Template
metadata:
name: {{ os }}-{{ item.workload }}-{{ item.flavor }}
name: {{ os }}-{{ item.workload }}-{{ item.flavor }}-v0.7.0
annotations:
openshift.io/display-name: "Fedora 23+ VM"
description: >-
Expand Down
2 changes: 1 addition & 1 deletion templates/opensuse.tpl.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: template.openshift.io/v1
kind: Template
metadata:
name: {{ os }}-{{ item.workload }}-{{ item.flavor }}
name: {{ os }}-{{ item.workload }}-{{ item.flavor }}-v0.7.0
annotations:
openshift.io/display-name: "OpenSUSE Leap 15.0 VM"
description: >-
Expand Down
2 changes: 1 addition & 1 deletion templates/rhel6.tpl.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: template.openshift.io/v1
kind: Template
metadata:
name: {{ os }}-{{ item.workload }}-{{ item.flavor }}
name: {{ os }}-{{ item.workload }}-{{ item.flavor }}-v0.7.0
annotations:
openshift.io/display-name: "Red Hat Enterprise Linux 6.0+ VM"
description: >-
Expand Down
2 changes: 1 addition & 1 deletion templates/rhel7.tpl.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: template.openshift.io/v1
kind: Template
metadata:
name: {{ os }}-{{ item.workload }}-{{ item.flavor }}
name: {{ os }}-{{ item.workload }}-{{ item.flavor }}-v0.7.0
annotations:
openshift.io/display-name: "Red Hat Enterprise Linux 7.0+ VM"
description: >-
Expand Down
2 changes: 1 addition & 1 deletion templates/ubuntu.tpl.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: template.openshift.io/v1
kind: Template
metadata:
name: {{ os }}-{{ item.workload }}-{{ item.flavor }}
name: {{ os }}-{{ item.workload }}-{{ item.flavor }}-v0.7.0
annotations:
openshift.io/display-name: "Ubuntu 18.04 (Xenial Xerus) VM"
description: >-
Expand Down
2 changes: 1 addition & 1 deletion templates/win2k12r2.tpl.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: template.openshift.io/v1
kind: Template
metadata:
name: win2k12r2-{{ item.workload }}-{{ item.flavor }}
name: win2k12r2-{{ item.workload }}-{{ item.flavor }}-v0.7.0
annotations:
openshift.io/display-name: "Microsoft Windows Server 2012 R2 VM"
description: >-
Expand Down

0 comments on commit 6602185

Please sign in to comment.