Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
H
helm3
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
helm3
Commits
a83425d4
Commit
a83425d4
authored
Aug 05, 2016
by
fibonacci1729
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
style & doc comments
parent
241cc298
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
7 additions
and
28 deletions
+7
-28
doc.go
pkg/storage/doc.go
+1
-0
driver.go
pkg/storage/driver/driver.go
+1
-0
memory.go
pkg/storage/driver/memory.go
+1
-0
memory_test.go
pkg/storage/driver/memory_test.go
+1
-0
filter.go
pkg/storage/filter.go
+1
-0
storage.go
pkg/storage/storage.go
+1
-0
storage_test.go
pkg/storage/storage_test.go
+1
-28
No files found.
pkg/storage/doc.go
View file @
a83425d4
...
@@ -20,4 +20,5 @@ Tiller stores releases (see 'cmd/tiller/environment'.Environment). The backend
...
@@ -20,4 +20,5 @@ Tiller stores releases (see 'cmd/tiller/environment'.Environment). The backend
storage mechanism may be implemented with different backends. This package
storage mechanism may be implemented with different backends. This package
and its subpackages provide storage layers for Tiller objects.
and its subpackages provide storage layers for Tiller objects.
*/
*/
package
storage
// import "k8s.io/helm/pkg/storage"
package
storage
// import "k8s.io/helm/pkg/storage"
pkg/storage/driver/driver.go
View file @
a83425d4
...
@@ -13,6 +13,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
...
@@ -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
See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
*/
*/
package
driver
// import "k8s.io/helm/pkg/storage/driver"
package
driver
// import "k8s.io/helm/pkg/storage/driver"
import
(
import
(
...
...
pkg/storage/driver/memory.go
View file @
a83425d4
...
@@ -13,6 +13,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
...
@@ -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
See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
*/
*/
package
driver
// import "k8s.io/helm/pkg/storage/driver"
package
driver
// import "k8s.io/helm/pkg/storage/driver"
import
(
import
(
...
...
pkg/storage/driver/memory_test.go
View file @
a83425d4
...
@@ -13,6 +13,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
...
@@ -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
See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
*/
*/
package
driver
// import "k8s.io/helm/pkg/storage/driver"
package
driver
// import "k8s.io/helm/pkg/storage/driver"
import
(
import
(
...
...
pkg/storage/filter.go
View file @
a83425d4
...
@@ -13,6 +13,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
...
@@ -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
See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
*/
*/
package
storage
package
storage
import
rspb
"k8s.io/helm/pkg/proto/hapi/release"
import
rspb
"k8s.io/helm/pkg/proto/hapi/release"
...
...
pkg/storage/storage.go
View file @
a83425d4
...
@@ -13,6 +13,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
...
@@ -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
See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
*/
*/
package
storage
// import "k8s.io/helm/pkg/storage"
package
storage
// import "k8s.io/helm/pkg/storage"
import
(
import
(
...
...
pkg/storage/storage_test.go
View file @
a83425d4
...
@@ -13,6 +13,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
...
@@ -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
See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
*/
*/
package
storage
// import "k8s.io/helm/pkg/storage"
package
storage
// import "k8s.io/helm/pkg/storage"
import
(
import
(
...
@@ -146,31 +147,3 @@ func assertErrNil(eh func(args ...interface{}), err error, message string) {
...
@@ -146,31 +147,3 @@ func assertErrNil(eh func(args ...interface{}), err error, message string) {
eh
(
fmt
.
Sprintf
(
"%s: %q"
,
message
,
err
))
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",
}
}
*/
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment