mirror of
https://github.com/helm/helm.git
synced 2026-08-05 07:30:46 +00:00
style & doc comments
This commit is contained in:
@@ -20,4 +20,5 @@ Tiller stores releases (see 'cmd/tiller/environment'.Environment). The backend
|
||||
storage mechanism may be implemented with different backends. This package
|
||||
and its subpackages provide storage layers for Tiller objects.
|
||||
*/
|
||||
|
||||
package storage // import "k8s.io/helm/pkg/storage"
|
||||
|
||||
@@ -13,6 +13,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
*/
|
||||
|
||||
package driver // import "k8s.io/helm/pkg/storage/driver"
|
||||
|
||||
import (
|
||||
|
||||
@@ -13,6 +13,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
*/
|
||||
|
||||
package driver // import "k8s.io/helm/pkg/storage/driver"
|
||||
|
||||
import (
|
||||
|
||||
@@ -13,6 +13,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
*/
|
||||
|
||||
package driver // import "k8s.io/helm/pkg/storage/driver"
|
||||
|
||||
import (
|
||||
|
||||
@@ -13,6 +13,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
*/
|
||||
|
||||
package storage
|
||||
|
||||
import rspb "k8s.io/helm/pkg/proto/hapi/release"
|
||||
|
||||
@@ -13,6 +13,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
*/
|
||||
|
||||
package storage // import "k8s.io/helm/pkg/storage"
|
||||
|
||||
import (
|
||||
|
||||
@@ -13,6 +13,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
*/
|
||||
|
||||
package storage // import "k8s.io/helm/pkg/storage"
|
||||
|
||||
import (
|
||||
@@ -146,31 +147,3 @@ func assertErrNil(eh func(args ...interface{}), err error, message string) {
|
||||
eh(fmt.Sprintf("%s: %q", message, err))
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
func releaseData() *rspb.Release {
|
||||
var manifest = `apiVersion: v1
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
name: configmap-storage-test
|
||||
data:
|
||||
count: "100"
|
||||
limit: "200"
|
||||
state: "new"
|
||||
token: "abc"
|
||||
`
|
||||
|
||||
tm, _ := tspb.TimestampProto(time.Now())
|
||||
return &rspb.Release{
|
||||
Name: "hungry-hippo",
|
||||
Info: &rspb.Info{
|
||||
FirstDeployed: tm,
|
||||
LastDeployed: tm,
|
||||
Status: &rspb.Status{Code: rspb.Status_DEPLOYED},
|
||||
},
|
||||
Version: 2,
|
||||
Manifest: manifest,
|
||||
Namespace: "kube-system",
|
||||
}
|
||||
}
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user