Skip to content

Commit 0f5737a

Browse files
fixes #506 (#511)
Co-authored-by: mservidio <mservidio@google.com>
1 parent 400c1eb commit 0f5737a

File tree

5 files changed

+15
-4
lines changed

5 files changed

+15
-4
lines changed

marketplace/releases/RELEASE_NOTES_VM_SOLUTION.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Google Cloud Platform Release Notes for Marketplace VM Solution
22

3+
## 0.7.0 Release Notes
4+
* Build - 6/3/2021
5+
6+
### Datashare
7+
* Kubernetes cluster version is 1.18
8+
* https://cloud.google.com/kubernetes-engine/docs/release-notes
9+
10+
### Updates
11+
* N/A
12+
313
## 0.6.8 Release Notes
414
* Build - 4/19/2021
515

Binary file not shown.

marketplace/vm-solution/cluster.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ def GenerateConfig(context):
2323
cluster_name = 'datashare-cluster-resource'
2424
acutal_cluster_name = 'datashare'
2525
# type_name = name_prefix + '-type'
26-
cluster_version = '1.16'
26+
cluster_version_num = context.properties['clusterVersion']
27+
cluster_version = '' + str(cluster_version_num) + ''
2728
workload_pool = context.env['project'] + '.svc.id.goog'
2829
machine_type = 'e2-standard-2'
2930

@@ -38,7 +39,7 @@ def GenerateConfig(context):
3839
'zone': context.properties['zone'],
3940
'cluster': {
4041
'name': acutal_cluster_name,
41-
'initialClusterVersion': cluster_version,
42+
'initialClusterVersion': '' + cluster_version + '',
4243
'initialNodeCount': 3,
4344
'ipAllocationPolicy': {
4445
'useIpAliases': True,

marketplace/vm-solution/cluster.py.schema

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ properties:
3131
clusterVersion:
3232
type: string
3333
description: Initial number of nodes desired in the cluster.
34-
default: "1.16"
34+
default: "1.18"
3535
initialNodeCount:
3636
type: integer
3737
description: Initial number of nodes desired in the cluster.

marketplace/vm-solution/datashare-vm.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ imports:
3535
{% set useRuntimeConfigWaiterValue = properties["useRuntimeConfigWaiter"] %}
3636
{% set deployApiToGkeValue = properties["deployApiToGke"] %}
3737
{% set gkeZone = properties["input_gkeZone"] %}
38-
{% set clusterVersion = "1.16" %}
38+
{% set clusterVersion = "1.18" + "" %}
3939
{% set gkeClusterName = "datashare" %}
4040
{% set waiterName = env["deployment"] + "-startup-waiter" %}
4141
{% set configName = env["deployment"] + "-startup-config" %}

0 commit comments

Comments
 (0)