mirror of
https://github.com/ossrs/srs.git
synced 2025-03-09 15:49:59 +00:00
Support helm to optimize the deployment procedure of a SRS cluster. v6.0.64 (#3611)
1. Introduce a novel Docker tag in the x.y.z format, akin to the HELM format, such as ossrs/srs:5.0.155. 2. Incorporate the SRS_PLATFORM flag for containers initiated through HELM. --------- `TRANS_BY_GPT3` --------- Co-authored-by: chundonglinlin <chundonglinlin@163.com>
This commit is contained in:
parent
34747fa1a3
commit
e19efe0bcd
4 changed files with 20 additions and 1 deletions
|
@ -7,6 +7,7 @@ The changelog for SRS.
|
|||
<a name="v6-changes"></a>
|
||||
|
||||
## SRS 6.0 Changelog
|
||||
* v6.0, 2023-07-27, Merge [#3611](https://github.com/ossrs/srs/pull/3611): Design and implement helm capabilities to streamline the deployment process of an SRS cluster.. v6.0.63 (#3611)
|
||||
* v6.0, 2023-07-27, Merge [#3703](https://github.com/ossrs/srs/pull/3703): The identifier "ShowCouroutines" needs to be modified to "ShowCoroutines" in order to rectify the typographical error.. v6.0.62 (#3703)
|
||||
* v6.0, 2023-07-26, Merge [#3699](https://github.com/ossrs/srs/pull/3699): Bugfix: Eliminate the redundant declaration of the _srs_rtc_manager variable.. v6.0.61 (#3699)
|
||||
* v6.0, 2023-07-21, Merge [#3695](https://github.com/ossrs/srs/pull/3695): API: Fix HTTPS callback issue using SNI in TLS client handshake. v6.0.61 (#3695)
|
||||
|
|
|
@ -70,6 +70,8 @@ void srs_build_features(stringstream& ss)
|
|||
SRS_CHECK_FEATURE2(_srs_config->get_raw_api(), "raw", ss);
|
||||
SRS_CHECK_FEATURE2(_srs_config->get_exporter_enabled(), "prom", ss);
|
||||
|
||||
string platform = srs_getenv("SRS_PLATFORM");
|
||||
SRS_CHECK_FEATURE3(!string(platform).empty(), "plat", platform, ss);
|
||||
string region = srs_getenv("SRS_REGION");
|
||||
SRS_CHECK_FEATURE3(!string(region).empty(), "region", region, ss);
|
||||
string source = srs_getenv("SRS_SOURCE");
|
||||
|
|
|
@ -9,6 +9,6 @@
|
|||
|
||||
#define VERSION_MAJOR 6
|
||||
#define VERSION_MINOR 0
|
||||
#define VERSION_REVISION 63
|
||||
#define VERSION_REVISION 64
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue