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

bump tezos-k8s default to v13 because xtz-shots no longer supports v12 #457

Merged
merged 1 commit into from
May 24, 2022
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 charts/snapshotEngine/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ tezos_k8s_images:

# the tezos version used to run `tezos-node snapshot import/export`
images:
octez: tezos/tezos:v12-release
octez: tezos/tezos:v13-release

# snapshotEngine containers interact with the kubernetes control
# plane to create volume snapshots. This requires a special IAM role
Expand Down
2 changes: 1 addition & 1 deletion charts/tezos/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ is_invitation: false

# Images not part of the tezos-k8s repo go here
images:
octez: tezos/tezos:v12-release
octez: tezos/tezos:v13-release
tezedge: tezedge/tezedge:v1.6.8
# Images that are part of the tezos-k8s repo go here with 'dev' tag
tezos_k8s_images:
Expand Down
2 changes: 1 addition & 1 deletion mkchain/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ You can explicitly specify some values by:
| | --number-of-nodes | Number of non-baking nodes in the cluster | 0 |
| bootstrap_peers | --bootstrap-peers | Peer ips to connect to | [] |
| expected_proof_of_work | --expected-proof-of-work | Node identity generation difficulty | 0 |
| images.octez | --octez-docker-image | Version of the Octez docker image to run | tezos/tezos:v12-release |
| images.octez | --octez-docker-image | Version of the Octez docker image to run | tezos/tezos:v13-release |
| | --use-docker (--no...) | Use (or don't use) docker to generate keys rather than pytezos | autodetect |
| zerotier_config.zerotier_network | --zerotier-network | Zerotier network id for external chain access | |
| zerotier_config.zerotier_token | --zerotier-token | Zerotier token for external chain access | |
Expand Down
2 changes: 1 addition & 1 deletion mkchain/tqchain/mkchain.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def quoted_scalar(dumper, data): # a representer to force quotations on scalars
},
"octez_docker_image": {
"help": "Version of the Octez docker image",
"default": "tezos/tezos:v12-release",
"default": "tezos/tezos:v13-release",
},
"use_docker": {
"action": "store_true",
Expand Down
6 changes: 3 additions & 3 deletions test/charts/mainnet.expect.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ spec:
spec:
containers:
- name: octez-node
image: "tezos/tezos:v12-release"
image: "tezos/tezos:v13-release"
imagePullPolicy: IfNotPresent
command:
- /bin/sh
Expand Down Expand Up @@ -187,7 +187,7 @@ spec:
name: var-volume
initContainers:
- name: config-init
image: "tezos/tezos:v12-release"
image: "tezos/tezos:v13-release"
imagePullPolicy: IfNotPresent
command:
- /bin/sh
Expand Down Expand Up @@ -291,7 +291,7 @@ spec:
- mountPath: /var/tezos
name: var-volume
- name: snapshot-importer
image: "tezos/tezos:v12-release"
image: "tezos/tezos:v13-release"
imagePullPolicy: IfNotPresent
command:
- /bin/sh
Expand Down
4 changes: 2 additions & 2 deletions test/charts/mainnet2.expect.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ spec:
name: var-volume
initContainers:
- name: config-init
image: "tezos/tezos:v12-release"
image: "tezos/tezos:v13-release"
imagePullPolicy: IfNotPresent
command:
- /bin/sh
Expand Down Expand Up @@ -394,7 +394,7 @@ spec:
- mountPath: /var/tezos
name: var-volume
- name: snapshot-importer
image: "tezos/tezos:v12-release"
image: "tezos/tezos:v13-release"
imagePullPolicy: IfNotPresent
command:
- /bin/sh
Expand Down