risingwave_common/util/
deployment.rs

1// Copyright 2025 RisingWave Labs
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//     http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15use enum_as_inner::EnumAsInner;
16
17use super::env_var::env_var_is_true;
18
19/// The deployment environment detected from environment variables.
20#[derive(Debug, Clone, Copy, EnumAsInner)]
21pub enum Deployment {
22    /// Running in CI.
23    Ci,
24    /// Running in cloud.
25    Cloud,
26    /// Running in other environments.
27    // TODO: may distinguish between local development and on-premises production.
28    Other,
29}
30
31impl Deployment {
32    /// Returns the deployment environment detected from current environment variables.
33    pub fn current() -> Self {
34        if env_var_is_true("RISINGWAVE_CI") {
35            Self::Ci
36        } else if env_var_is_true("RISINGWAVE_CLOUD") {
37            Self::Cloud
38        } else {
39            Self::Other
40        }
41    }
42}