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

[k8s-runtime] Use preview release train to install storage class extension when enabling storage class service #7718

Merged
merged 2 commits into from
Jul 1, 2024
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
4 changes: 4 additions & 0 deletions src/k8s-runtime/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
Release History
===============

1.0.2
++++++
* Use `preview` release train storage class extension when enabling storage class service

1.0.1
++++++
* Add RP registration check to networking resources
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def enable_storage_class(cmd: AzCliCommand, resource_uri: str):
type="SystemAssigned"
),
extension_type=STORAGE_CLASS_EXTENSION_TYPE,
release_train="dev",
release_train="preview",
configuration_settings={
"k8sRuntimeFpaObjectId": object_id,
},
Expand Down
2 changes: 1 addition & 1 deletion src/k8s-runtime/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@


# HISTORY.rst entry.
VERSION = '1.0.1'
VERSION = '1.0.2'

# The full list of classifiers is available at
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
Expand Down
Loading