github.com/koderover/helm@v2.17.0+incompatible/_proto/hapi/release/release.proto (about)

     1  // Copyright The Helm Authors.
     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  
    15  syntax = "proto3";
    16  
    17  package hapi.release;
    18  
    19  import "hapi/release/hook.proto";
    20  import "hapi/release/info.proto";
    21  import "hapi/chart/config.proto";
    22  import "hapi/chart/chart.proto";
    23  
    24  option go_package = "release";
    25  
    26  // Release describes a deployment of a chart, together with the chart
    27  // and the variables used to deploy that chart.
    28  message Release {
    29  	// Name is the name of the release
    30  	string name = 1;
    31  
    32  	// Info provides information about a release
    33  	hapi.release.Info info = 2;
    34  
    35  	// Chart is the chart that was released.
    36  	hapi.chart.Chart chart = 3;
    37  
    38  	// Config is the set of extra Values added to the chart.
    39  	// These values override the default values inside of the chart.
    40  	hapi.chart.Config config = 4;
    41  
    42  	// Manifest is the string representation of the rendered template.
    43  	string manifest = 5;
    44  
    45  	// Hooks are all of the hooks declared for this release.
    46  	repeated hapi.release.Hook hooks = 6;
    47  
    48  	// Version is an int32 which represents the version of the release.
    49  	int32 version = 7;
    50  
    51  	// Namespace is the kubernetes namespace of the release.
    52  	string namespace = 8;
    53  }