mirror of https://github.com/helm/helm
commit
9c48471e59
@ -0,0 +1,22 @@
|
|||||||
|
name: golangci-lint
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
pull_request:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
golangci:
|
||||||
|
name: golangci-lint
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # pin@v4.1.1
|
||||||
|
|
||||||
|
- name: Setup Go
|
||||||
|
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # pin@5.0.0
|
||||||
|
with:
|
||||||
|
go-version: "1.21"
|
||||||
|
- name: golangci-lint
|
||||||
|
uses: golangci/golangci-lint-action@3cfe3a4abbb849e10058ce4af15d205b6da42804 #pin@4.0.0
|
||||||
|
with:
|
||||||
|
version: v1.55
|
@ -0,0 +1,94 @@
|
|||||||
|
/*
|
||||||
|
Copyright The Helm Authors.
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
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 main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"io"
|
||||||
|
"log"
|
||||||
|
|
||||||
|
"github.com/spf13/cobra"
|
||||||
|
|
||||||
|
"helm.sh/helm/v3/cmd/helm/require"
|
||||||
|
"helm.sh/helm/v3/pkg/action"
|
||||||
|
"helm.sh/helm/v3/pkg/cli/output"
|
||||||
|
)
|
||||||
|
|
||||||
|
type metadataWriter struct {
|
||||||
|
metadata *action.Metadata
|
||||||
|
}
|
||||||
|
|
||||||
|
func newGetMetadataCmd(cfg *action.Configuration, out io.Writer) *cobra.Command {
|
||||||
|
var outfmt output.Format
|
||||||
|
client := action.NewGetMetadata(cfg)
|
||||||
|
|
||||||
|
cmd := &cobra.Command{
|
||||||
|
Use: "metadata RELEASE_NAME",
|
||||||
|
Short: "This command fetches metadata for a given release",
|
||||||
|
Args: require.ExactArgs(1),
|
||||||
|
ValidArgsFunction: func(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {
|
||||||
|
if len(args) != 0 {
|
||||||
|
return nil, cobra.ShellCompDirectiveNoFileComp
|
||||||
|
}
|
||||||
|
return compListReleases(toComplete, args, cfg)
|
||||||
|
},
|
||||||
|
RunE: func(cmd *cobra.Command, args []string) error {
|
||||||
|
releaseMetadata, err := client.Run(args[0])
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return outfmt.Write(out, &metadataWriter{releaseMetadata})
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
f := cmd.Flags()
|
||||||
|
f.IntVar(&client.Version, "revision", 0, "specify release revision")
|
||||||
|
err := cmd.RegisterFlagCompletionFunc("revision", func(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {
|
||||||
|
if len(args) == 1 {
|
||||||
|
return compListRevisions(toComplete, cfg, args[0])
|
||||||
|
}
|
||||||
|
return nil, cobra.ShellCompDirectiveNoFileComp
|
||||||
|
})
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
bindOutputFlag(cmd, &outfmt)
|
||||||
|
|
||||||
|
return cmd
|
||||||
|
}
|
||||||
|
|
||||||
|
func (w metadataWriter) WriteTable(out io.Writer) error {
|
||||||
|
_, _ = fmt.Fprintf(out, "NAME: %v\n", w.metadata.Name)
|
||||||
|
_, _ = fmt.Fprintf(out, "CHART: %v\n", w.metadata.Chart)
|
||||||
|
_, _ = fmt.Fprintf(out, "VERSION: %v\n", w.metadata.Version)
|
||||||
|
_, _ = fmt.Fprintf(out, "APP_VERSION: %v\n", w.metadata.AppVersion)
|
||||||
|
_, _ = fmt.Fprintf(out, "NAMESPACE: %v\n", w.metadata.Namespace)
|
||||||
|
_, _ = fmt.Fprintf(out, "REVISION: %v\n", w.metadata.Revision)
|
||||||
|
_, _ = fmt.Fprintf(out, "STATUS: %v\n", w.metadata.Status)
|
||||||
|
_, _ = fmt.Fprintf(out, "DEPLOYED_AT: %v\n", w.metadata.DeployedAt)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (w metadataWriter) WriteJSON(out io.Writer) error {
|
||||||
|
return output.EncodeJSON(out, w.metadata)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (w metadataWriter) WriteYAML(out io.Writer) error {
|
||||||
|
return output.EncodeYAML(out, w.metadata)
|
||||||
|
}
|
@ -0,0 +1,66 @@
|
|||||||
|
/*
|
||||||
|
Copyright The Helm Authors.
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
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 main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"helm.sh/helm/v3/pkg/release"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestGetMetadataCmd(t *testing.T) {
|
||||||
|
tests := []cmdTestCase{{
|
||||||
|
name: "get metadata with a release",
|
||||||
|
cmd: "get metadata thomas-guide",
|
||||||
|
golden: "output/get-metadata.txt",
|
||||||
|
rels: []*release.Release{release.Mock(&release.MockReleaseOptions{Name: "thomas-guide"})},
|
||||||
|
}, {
|
||||||
|
name: "get metadata requires release name arg",
|
||||||
|
cmd: "get metadata",
|
||||||
|
golden: "output/get-metadata-args.txt",
|
||||||
|
rels: []*release.Release{release.Mock(&release.MockReleaseOptions{Name: "thomas-guide"})},
|
||||||
|
wantError: true,
|
||||||
|
}, {
|
||||||
|
name: "get metadata to json",
|
||||||
|
cmd: "get metadata thomas-guide --output json",
|
||||||
|
golden: "output/get-metadata.json",
|
||||||
|
rels: []*release.Release{release.Mock(&release.MockReleaseOptions{Name: "thomas-guide"})},
|
||||||
|
}, {
|
||||||
|
name: "get metadata to yaml",
|
||||||
|
cmd: "get metadata thomas-guide --output yaml",
|
||||||
|
golden: "output/get-metadata.yaml",
|
||||||
|
rels: []*release.Release{release.Mock(&release.MockReleaseOptions{Name: "thomas-guide"})},
|
||||||
|
}}
|
||||||
|
runTestCmd(t, tests)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestGetMetadataCompletion(t *testing.T) {
|
||||||
|
checkReleaseCompletion(t, "get metadata", false)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestGetMetadataRevisionCompletion(t *testing.T) {
|
||||||
|
revisionFlagCompletionTest(t, "get metadata")
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestGetMetadataOutputCompletion(t *testing.T) {
|
||||||
|
outputFlagCompletionTest(t, "get metadata")
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestGetMetadataFileCompletion(t *testing.T) {
|
||||||
|
checkFileCompletion(t, "get metadata", false)
|
||||||
|
checkFileCompletion(t, "get metadata myrelease", false)
|
||||||
|
}
|
@ -0,0 +1,19 @@
|
|||||||
|
name: wrongname
|
||||||
|
commands:
|
||||||
|
- name: empty
|
||||||
|
- name: full
|
||||||
|
commands:
|
||||||
|
- name: more
|
||||||
|
validArgs:
|
||||||
|
- one
|
||||||
|
- two
|
||||||
|
flags:
|
||||||
|
- b
|
||||||
|
- ball
|
||||||
|
- name: less
|
||||||
|
flags:
|
||||||
|
- a
|
||||||
|
- all
|
||||||
|
flags:
|
||||||
|
- z
|
||||||
|
- q
|
@ -0,0 +1,7 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
echo $HELM_PLUGIN_NAME
|
||||||
|
echo $HELM_PLUGIN_DIR
|
||||||
|
echo $HELM_PLUGINS
|
||||||
|
echo $HELM_REPOSITORY_CONFIG
|
||||||
|
echo $HELM_REPOSITORY_CACHE
|
||||||
|
echo $HELM_BIN
|
@ -0,0 +1,4 @@
|
|||||||
|
name: fullenv
|
||||||
|
usage: "show env vars"
|
||||||
|
description: "show all env vars"
|
||||||
|
command: "$HELM_PLUGIN_DIR/fullenv.sh"
|
@ -0,0 +1,6 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
generated: 2016-10-03T16:03:10.640376913-06:00
|
||||||
|
repositories:
|
||||||
|
- cache: testing-index.yaml
|
||||||
|
name: testing
|
||||||
|
url: http://example.com/charts
|
@ -0,0 +1,3 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
entries: {}
|
||||||
|
generated: "2020-09-09T19:50:50.198347916-04:00"
|
@ -0,0 +1,66 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
entries:
|
||||||
|
alpine:
|
||||||
|
- name: alpine
|
||||||
|
url: https://charts.helm.sh/stable/alpine-0.1.0.tgz
|
||||||
|
checksum: 0e6661f193211d7a5206918d42f5c2a9470b737d
|
||||||
|
created: "2018-06-27T10:00:18.230700509Z"
|
||||||
|
deprecated: true
|
||||||
|
home: https://helm.sh/helm
|
||||||
|
sources:
|
||||||
|
- https://github.com/helm/helm
|
||||||
|
version: 0.1.0
|
||||||
|
appVersion: 1.2.3
|
||||||
|
description: Deploy a basic Alpine Linux pod
|
||||||
|
keywords: []
|
||||||
|
maintainers: []
|
||||||
|
icon: ""
|
||||||
|
apiVersion: v2
|
||||||
|
- name: alpine
|
||||||
|
url: https://charts.helm.sh/stable/alpine-0.2.0.tgz
|
||||||
|
checksum: 0e6661f193211d7a5206918d42f5c2a9470b737d
|
||||||
|
created: "2018-07-09T11:34:37.797864902Z"
|
||||||
|
home: https://helm.sh/helm
|
||||||
|
sources:
|
||||||
|
- https://github.com/helm/helm
|
||||||
|
version: 0.2.0
|
||||||
|
appVersion: 2.3.4
|
||||||
|
description: Deploy a basic Alpine Linux pod
|
||||||
|
keywords: []
|
||||||
|
maintainers: []
|
||||||
|
icon: ""
|
||||||
|
apiVersion: v2
|
||||||
|
- name: alpine
|
||||||
|
url: https://charts.helm.sh/stable/alpine-0.3.0-rc.1.tgz
|
||||||
|
checksum: 0e6661f193211d7a5206918d42f5c2a9470b737d
|
||||||
|
created: "2020-11-12T08:44:58.872726222Z"
|
||||||
|
home: https://helm.sh/helm
|
||||||
|
sources:
|
||||||
|
- https://github.com/helm/helm
|
||||||
|
version: 0.3.0-rc.1
|
||||||
|
appVersion: 3.0.0
|
||||||
|
description: Deploy a basic Alpine Linux pod
|
||||||
|
keywords: []
|
||||||
|
maintainers: []
|
||||||
|
icon: ""
|
||||||
|
apiVersion: v2
|
||||||
|
mariadb:
|
||||||
|
- name: mariadb
|
||||||
|
url: https://charts.helm.sh/stable/mariadb-0.3.0.tgz
|
||||||
|
checksum: 65229f6de44a2be9f215d11dbff311673fc8ba56
|
||||||
|
created: "2018-04-23T08:20:27.160959131Z"
|
||||||
|
home: https://mariadb.org
|
||||||
|
sources:
|
||||||
|
- https://github.com/bitnami/bitnami-docker-mariadb
|
||||||
|
version: 0.3.0
|
||||||
|
description: Chart for MariaDB
|
||||||
|
keywords:
|
||||||
|
- mariadb
|
||||||
|
- mysql
|
||||||
|
- database
|
||||||
|
- sql
|
||||||
|
maintainers:
|
||||||
|
- name: Bitnami
|
||||||
|
email: containers@bitnami.com
|
||||||
|
icon: ""
|
||||||
|
apiVersion: v2
|
@ -0,0 +1,3 @@
|
|||||||
|
Error: "helm get metadata" requires 1 argument
|
||||||
|
|
||||||
|
Usage: helm get metadata RELEASE_NAME [flags]
|
@ -0,0 +1 @@
|
|||||||
|
{"name":"thomas-guide","chart":"foo","version":"0.1.0-beta.1","appVersion":"1.0","namespace":"default","revision":1,"status":"deployed","deployedAt":"1977-09-02T22:04:05Z"}
|
@ -0,0 +1,8 @@
|
|||||||
|
NAME: thomas-guide
|
||||||
|
CHART: foo
|
||||||
|
VERSION: 0.1.0-beta.1
|
||||||
|
APP_VERSION: 1.0
|
||||||
|
NAMESPACE: default
|
||||||
|
REVISION: 1
|
||||||
|
STATUS: deployed
|
||||||
|
DEPLOYED_AT: 1977-09-02T22:04:05Z
|
@ -0,0 +1,8 @@
|
|||||||
|
appVersion: "1.0"
|
||||||
|
chart: foo
|
||||||
|
deployedAt: "1977-09-02T22:04:05Z"
|
||||||
|
name: thomas-guide
|
||||||
|
namespace: default
|
||||||
|
revision: 1
|
||||||
|
status: deployed
|
||||||
|
version: 0.1.0-beta.1
|
@ -0,0 +1,20 @@
|
|||||||
|
NAME: secrets
|
||||||
|
LAST DEPLOYED: Fri Sep 2 22:04:05 1977
|
||||||
|
NAMESPACE: default
|
||||||
|
STATUS: pending-install
|
||||||
|
REVISION: 1
|
||||||
|
TEST SUITE: None
|
||||||
|
HOOKS:
|
||||||
|
MANIFEST:
|
||||||
|
---
|
||||||
|
# Source: chart-with-secret/templates/secret.yaml
|
||||||
|
# HIDDEN: The Secret output has been suppressed
|
||||||
|
---
|
||||||
|
# Source: chart-with-secret/templates/configmap.yaml
|
||||||
|
apiVersion: v1
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
name: test-configmap
|
||||||
|
data:
|
||||||
|
foo: bar
|
||||||
|
|
@ -0,0 +1,25 @@
|
|||||||
|
NAME: secrets
|
||||||
|
LAST DEPLOYED: Fri Sep 2 22:04:05 1977
|
||||||
|
NAMESPACE: default
|
||||||
|
STATUS: pending-install
|
||||||
|
REVISION: 1
|
||||||
|
TEST SUITE: None
|
||||||
|
HOOKS:
|
||||||
|
MANIFEST:
|
||||||
|
---
|
||||||
|
# Source: chart-with-secret/templates/secret.yaml
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Secret
|
||||||
|
metadata:
|
||||||
|
name: test-secret
|
||||||
|
stringData:
|
||||||
|
foo: bar
|
||||||
|
---
|
||||||
|
# Source: chart-with-secret/templates/configmap.yaml
|
||||||
|
apiVersion: v1
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
name: test-configmap
|
||||||
|
data:
|
||||||
|
foo: bar
|
||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
Error: INSTALLATION FAILED: Hiding Kubernetes secrets requires a dry-run mode
|
@ -0,0 +1,32 @@
|
|||||||
|
---
|
||||||
|
# Source: issue-9027/charts/subchart/templates/values.yaml
|
||||||
|
global:
|
||||||
|
hash:
|
||||||
|
key3: 13
|
||||||
|
key4: 4
|
||||||
|
key5: 5
|
||||||
|
key6: 6
|
||||||
|
hash:
|
||||||
|
key3: 13
|
||||||
|
key4: 4
|
||||||
|
key5: 5
|
||||||
|
key6: 6
|
||||||
|
---
|
||||||
|
# Source: issue-9027/templates/values.yaml
|
||||||
|
global:
|
||||||
|
hash:
|
||||||
|
key1: null
|
||||||
|
key2: null
|
||||||
|
key3: 13
|
||||||
|
subchart:
|
||||||
|
global:
|
||||||
|
hash:
|
||||||
|
key3: 13
|
||||||
|
key4: 4
|
||||||
|
key5: 5
|
||||||
|
key6: 6
|
||||||
|
hash:
|
||||||
|
key3: 13
|
||||||
|
key4: 4
|
||||||
|
key5: 5
|
||||||
|
key6: 6
|
@ -0,0 +1,4 @@
|
|||||||
|
==> Linting testdata/testcharts/chart-with-deprecated-api
|
||||||
|
[INFO] Chart.yaml: icon is recommended
|
||||||
|
|
||||||
|
1 chart(s) linted, 0 chart(s) failed
|
@ -0,0 +1,5 @@
|
|||||||
|
==> Linting testdata/testcharts/chart-with-deprecated-api
|
||||||
|
[INFO] Chart.yaml: icon is recommended
|
||||||
|
[WARNING] templates/horizontalpodautoscaler.yaml: autoscaling/v2beta1 HorizontalPodAutoscaler is deprecated in v1.22+, unavailable in v1.25+; use autoscaling/v2 HorizontalPodAutoscaler
|
||||||
|
|
||||||
|
Error: 1 chart(s) linted, 1 chart(s) failed
|
@ -0,0 +1,5 @@
|
|||||||
|
==> Linting testdata/testcharts/chart-with-deprecated-api
|
||||||
|
[INFO] Chart.yaml: icon is recommended
|
||||||
|
[WARNING] templates/horizontalpodautoscaler.yaml: autoscaling/v2beta1 HorizontalPodAutoscaler is deprecated in v1.22+, unavailable in v1.25+; use autoscaling/v2 HorizontalPodAutoscaler
|
||||||
|
|
||||||
|
1 chart(s) linted, 0 chart(s) failed
|
@ -1,4 +0,0 @@
|
|||||||
==> Linting testdata/testcharts/chart-with-only-crds
|
|
||||||
[WARNING] templates/: directory not found
|
|
||||||
|
|
||||||
1 chart(s) linted, 0 chart(s) failed
|
|
@ -0,0 +1 @@
|
|||||||
|
Error: release has no 3 version
|
@ -0,0 +1 @@
|
|||||||
|
Error: no results found
|
@ -0,0 +1,122 @@
|
|||||||
|
---
|
||||||
|
# Source: subchart/templates/subdir/serviceaccount.yaml
|
||||||
|
apiVersion: v1
|
||||||
|
kind: ServiceAccount
|
||||||
|
metadata:
|
||||||
|
name: subchart-sa
|
||||||
|
---
|
||||||
|
# Source: subchart/templates/subdir/configmap.yaml
|
||||||
|
apiVersion: v1
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
name: subchart-cm
|
||||||
|
data:
|
||||||
|
value: qux
|
||||||
|
---
|
||||||
|
# Source: subchart/templates/subdir/role.yaml
|
||||||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||||||
|
kind: Role
|
||||||
|
metadata:
|
||||||
|
name: subchart-role
|
||||||
|
rules:
|
||||||
|
- apiGroups: [""]
|
||||||
|
resources: ["pods"]
|
||||||
|
verbs: ["get","list","watch"]
|
||||||
|
---
|
||||||
|
# Source: subchart/templates/subdir/rolebinding.yaml
|
||||||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||||||
|
kind: RoleBinding
|
||||||
|
metadata:
|
||||||
|
name: subchart-binding
|
||||||
|
roleRef:
|
||||||
|
apiGroup: rbac.authorization.k8s.io
|
||||||
|
kind: Role
|
||||||
|
name: subchart-role
|
||||||
|
subjects:
|
||||||
|
- kind: ServiceAccount
|
||||||
|
name: subchart-sa
|
||||||
|
namespace: default
|
||||||
|
---
|
||||||
|
# Source: subchart/charts/subcharta/templates/service.yaml
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: subcharta
|
||||||
|
labels:
|
||||||
|
helm.sh/chart: "subcharta-0.1.0"
|
||||||
|
spec:
|
||||||
|
type: ClusterIP
|
||||||
|
ports:
|
||||||
|
- port: 80
|
||||||
|
targetPort: 80
|
||||||
|
protocol: TCP
|
||||||
|
name: apache
|
||||||
|
selector:
|
||||||
|
app.kubernetes.io/name: subcharta
|
||||||
|
---
|
||||||
|
# Source: subchart/charts/subchartb/templates/service.yaml
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: subchartb
|
||||||
|
labels:
|
||||||
|
helm.sh/chart: "subchartb-0.1.0"
|
||||||
|
spec:
|
||||||
|
type: ClusterIP
|
||||||
|
ports:
|
||||||
|
- port: 80
|
||||||
|
targetPort: 80
|
||||||
|
protocol: TCP
|
||||||
|
name: nginx
|
||||||
|
selector:
|
||||||
|
app.kubernetes.io/name: subchartb
|
||||||
|
---
|
||||||
|
# Source: subchart/templates/service.yaml
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: subchart
|
||||||
|
labels:
|
||||||
|
helm.sh/chart: "subchart-0.1.0"
|
||||||
|
app.kubernetes.io/instance: "release-name"
|
||||||
|
kube-version/major: "1"
|
||||||
|
kube-version/minor: "20"
|
||||||
|
kube-version/version: "v1.20.0"
|
||||||
|
spec:
|
||||||
|
type: ClusterIP
|
||||||
|
ports:
|
||||||
|
- port: 80
|
||||||
|
targetPort: 80
|
||||||
|
protocol: TCP
|
||||||
|
name: nginx
|
||||||
|
selector:
|
||||||
|
app.kubernetes.io/name: subchart
|
||||||
|
---
|
||||||
|
# Source: subchart/templates/tests/test-config.yaml
|
||||||
|
apiVersion: v1
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
name: "release-name-testconfig"
|
||||||
|
annotations:
|
||||||
|
"helm.sh/hook": test
|
||||||
|
data:
|
||||||
|
message: Hello World
|
||||||
|
---
|
||||||
|
# Source: subchart/templates/tests/test-nothing.yaml
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Pod
|
||||||
|
metadata:
|
||||||
|
name: "release-name-test"
|
||||||
|
annotations:
|
||||||
|
"helm.sh/hook": test
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- name: test
|
||||||
|
image: "alpine:latest"
|
||||||
|
envFrom:
|
||||||
|
- configMapRef:
|
||||||
|
name: "release-name-testconfig"
|
||||||
|
command:
|
||||||
|
- echo
|
||||||
|
- "$message"
|
||||||
|
restartPolicy: Never
|
@ -0,0 +1,122 @@
|
|||||||
|
---
|
||||||
|
# Source: subchart/templates/subdir/serviceaccount.yaml
|
||||||
|
apiVersion: v1
|
||||||
|
kind: ServiceAccount
|
||||||
|
metadata:
|
||||||
|
name: subchart-sa
|
||||||
|
---
|
||||||
|
# Source: subchart/templates/subdir/configmap.yaml
|
||||||
|
apiVersion: v1
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
name: subchart-cm
|
||||||
|
data:
|
||||||
|
value: baz
|
||||||
|
---
|
||||||
|
# Source: subchart/templates/subdir/role.yaml
|
||||||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||||||
|
kind: Role
|
||||||
|
metadata:
|
||||||
|
name: subchart-role
|
||||||
|
rules:
|
||||||
|
- apiGroups: [""]
|
||||||
|
resources: ["pods"]
|
||||||
|
verbs: ["get","list","watch"]
|
||||||
|
---
|
||||||
|
# Source: subchart/templates/subdir/rolebinding.yaml
|
||||||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||||||
|
kind: RoleBinding
|
||||||
|
metadata:
|
||||||
|
name: subchart-binding
|
||||||
|
roleRef:
|
||||||
|
apiGroup: rbac.authorization.k8s.io
|
||||||
|
kind: Role
|
||||||
|
name: subchart-role
|
||||||
|
subjects:
|
||||||
|
- kind: ServiceAccount
|
||||||
|
name: subchart-sa
|
||||||
|
namespace: default
|
||||||
|
---
|
||||||
|
# Source: subchart/charts/subcharta/templates/service.yaml
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: subcharta
|
||||||
|
labels:
|
||||||
|
helm.sh/chart: "subcharta-0.1.0"
|
||||||
|
spec:
|
||||||
|
type: ClusterIP
|
||||||
|
ports:
|
||||||
|
- port: 80
|
||||||
|
targetPort: 80
|
||||||
|
protocol: TCP
|
||||||
|
name: apache
|
||||||
|
selector:
|
||||||
|
app.kubernetes.io/name: subcharta
|
||||||
|
---
|
||||||
|
# Source: subchart/charts/subchartb/templates/service.yaml
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: subchartb
|
||||||
|
labels:
|
||||||
|
helm.sh/chart: "subchartb-0.1.0"
|
||||||
|
spec:
|
||||||
|
type: ClusterIP
|
||||||
|
ports:
|
||||||
|
- port: 80
|
||||||
|
targetPort: 80
|
||||||
|
protocol: TCP
|
||||||
|
name: nginx
|
||||||
|
selector:
|
||||||
|
app.kubernetes.io/name: subchartb
|
||||||
|
---
|
||||||
|
# Source: subchart/templates/service.yaml
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: subchart
|
||||||
|
labels:
|
||||||
|
helm.sh/chart: "subchart-0.1.0"
|
||||||
|
app.kubernetes.io/instance: "release-name"
|
||||||
|
kube-version/major: "1"
|
||||||
|
kube-version/minor: "20"
|
||||||
|
kube-version/version: "v1.20.0"
|
||||||
|
spec:
|
||||||
|
type: ClusterIP
|
||||||
|
ports:
|
||||||
|
- port: 80
|
||||||
|
targetPort: 80
|
||||||
|
protocol: TCP
|
||||||
|
name: nginx
|
||||||
|
selector:
|
||||||
|
app.kubernetes.io/name: subchart
|
||||||
|
---
|
||||||
|
# Source: subchart/templates/tests/test-config.yaml
|
||||||
|
apiVersion: v1
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
name: "release-name-testconfig"
|
||||||
|
annotations:
|
||||||
|
"helm.sh/hook": test
|
||||||
|
data:
|
||||||
|
message: Hello World
|
||||||
|
---
|
||||||
|
# Source: subchart/templates/tests/test-nothing.yaml
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Pod
|
||||||
|
metadata:
|
||||||
|
name: "release-name-test"
|
||||||
|
annotations:
|
||||||
|
"helm.sh/hook": test
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- name: test
|
||||||
|
image: "alpine:latest"
|
||||||
|
envFrom:
|
||||||
|
- configMapRef:
|
||||||
|
name: "release-name-testconfig"
|
||||||
|
command:
|
||||||
|
- echo
|
||||||
|
- "$message"
|
||||||
|
restartPolicy: Never
|
@ -0,0 +1,122 @@
|
|||||||
|
---
|
||||||
|
# Source: subchart/templates/subdir/serviceaccount.yaml
|
||||||
|
apiVersion: v1
|
||||||
|
kind: ServiceAccount
|
||||||
|
metadata:
|
||||||
|
name: subchart-sa
|
||||||
|
---
|
||||||
|
# Source: subchart/templates/subdir/configmap.yaml
|
||||||
|
apiVersion: v1
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
name: subchart-cm
|
||||||
|
data:
|
||||||
|
value: foo
|
||||||
|
---
|
||||||
|
# Source: subchart/templates/subdir/role.yaml
|
||||||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||||||
|
kind: Role
|
||||||
|
metadata:
|
||||||
|
name: subchart-role
|
||||||
|
rules:
|
||||||
|
- apiGroups: [""]
|
||||||
|
resources: ["pods"]
|
||||||
|
verbs: ["get","list","watch"]
|
||||||
|
---
|
||||||
|
# Source: subchart/templates/subdir/rolebinding.yaml
|
||||||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||||||
|
kind: RoleBinding
|
||||||
|
metadata:
|
||||||
|
name: subchart-binding
|
||||||
|
roleRef:
|
||||||
|
apiGroup: rbac.authorization.k8s.io
|
||||||
|
kind: Role
|
||||||
|
name: subchart-role
|
||||||
|
subjects:
|
||||||
|
- kind: ServiceAccount
|
||||||
|
name: subchart-sa
|
||||||
|
namespace: default
|
||||||
|
---
|
||||||
|
# Source: subchart/charts/subcharta/templates/service.yaml
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: subcharta
|
||||||
|
labels:
|
||||||
|
helm.sh/chart: "subcharta-0.1.0"
|
||||||
|
spec:
|
||||||
|
type: ClusterIP
|
||||||
|
ports:
|
||||||
|
- port: 80
|
||||||
|
targetPort: 80
|
||||||
|
protocol: TCP
|
||||||
|
name: apache
|
||||||
|
selector:
|
||||||
|
app.kubernetes.io/name: subcharta
|
||||||
|
---
|
||||||
|
# Source: subchart/charts/subchartb/templates/service.yaml
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: subchartb
|
||||||
|
labels:
|
||||||
|
helm.sh/chart: "subchartb-0.1.0"
|
||||||
|
spec:
|
||||||
|
type: ClusterIP
|
||||||
|
ports:
|
||||||
|
- port: 80
|
||||||
|
targetPort: 80
|
||||||
|
protocol: TCP
|
||||||
|
name: nginx
|
||||||
|
selector:
|
||||||
|
app.kubernetes.io/name: subchartb
|
||||||
|
---
|
||||||
|
# Source: subchart/templates/service.yaml
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: subchart
|
||||||
|
labels:
|
||||||
|
helm.sh/chart: "subchart-0.1.0"
|
||||||
|
app.kubernetes.io/instance: "release-name"
|
||||||
|
kube-version/major: "1"
|
||||||
|
kube-version/minor: "20"
|
||||||
|
kube-version/version: "v1.20.0"
|
||||||
|
spec:
|
||||||
|
type: ClusterIP
|
||||||
|
ports:
|
||||||
|
- port: 80
|
||||||
|
targetPort: 80
|
||||||
|
protocol: TCP
|
||||||
|
name: nginx
|
||||||
|
selector:
|
||||||
|
app.kubernetes.io/name: subchart
|
||||||
|
---
|
||||||
|
# Source: subchart/templates/tests/test-config.yaml
|
||||||
|
apiVersion: v1
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
name: "release-name-testconfig"
|
||||||
|
annotations:
|
||||||
|
"helm.sh/hook": test
|
||||||
|
data:
|
||||||
|
message: Hello World
|
||||||
|
---
|
||||||
|
# Source: subchart/templates/tests/test-nothing.yaml
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Pod
|
||||||
|
metadata:
|
||||||
|
name: "release-name-test"
|
||||||
|
annotations:
|
||||||
|
"helm.sh/hook": test
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- name: test
|
||||||
|
image: "alpine:latest"
|
||||||
|
envFrom:
|
||||||
|
- configMapRef:
|
||||||
|
name: "release-name-testconfig"
|
||||||
|
command:
|
||||||
|
- echo
|
||||||
|
- "$message"
|
||||||
|
restartPolicy: Never
|
@ -1 +1 @@
|
|||||||
version.BuildInfo{Version:"v3.11", GitCommit:"", GitTreeState:"", GoVersion:""}
|
version.BuildInfo{Version:"v3.13", GitCommit:"", GitTreeState:"", GoVersion:""}
|
||||||
|
@ -1 +1 @@
|
|||||||
version.BuildInfo{Version:"v3.11", GitCommit:"", GitTreeState:"", GoVersion:""}
|
version.BuildInfo{Version:"v3.13", GitCommit:"", GitTreeState:"", GoVersion:""}
|
||||||
|
@ -1 +1 @@
|
|||||||
v3.11
|
v3.13
|
||||||
|
@ -1 +1 @@
|
|||||||
Version: v3.11
|
Version: v3.13
|
@ -1 +1 @@
|
|||||||
version.BuildInfo{Version:"v3.11", GitCommit:"", GitTreeState:"", GoVersion:""}
|
version.BuildInfo{Version:"v3.13", GitCommit:"", GitTreeState:"", GoVersion:""}
|
||||||
|
@ -0,0 +1,6 @@
|
|||||||
|
apiVersion: v2
|
||||||
|
appVersion: "1.0.0"
|
||||||
|
description: A Helm chart for Kubernetes
|
||||||
|
name: chart-with-deprecated-api
|
||||||
|
type: application
|
||||||
|
version: 1.0.0
|
@ -0,0 +1,9 @@
|
|||||||
|
apiVersion: autoscaling/v2beta1
|
||||||
|
kind: HorizontalPodAutoscaler
|
||||||
|
metadata:
|
||||||
|
name: deprecated
|
||||||
|
spec:
|
||||||
|
scaleTargetRef:
|
||||||
|
kind: Pod
|
||||||
|
name: pod
|
||||||
|
maxReplicas: 3
|
@ -0,0 +1,4 @@
|
|||||||
|
apiVersion: v2
|
||||||
|
description: Chart with Kubernetes Secret
|
||||||
|
name: chart-with-secret
|
||||||
|
version: 0.0.1
|
@ -0,0 +1,6 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
name: test-configmap
|
||||||
|
data:
|
||||||
|
foo: bar
|
@ -0,0 +1,6 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: Secret
|
||||||
|
metadata:
|
||||||
|
name: test-secret
|
||||||
|
stringData:
|
||||||
|
foo: bar
|
@ -0,0 +1,6 @@
|
|||||||
|
apiVersion: v2
|
||||||
|
name: issue-9027
|
||||||
|
version: 0.1.0
|
||||||
|
dependencies:
|
||||||
|
- name: subchart
|
||||||
|
version: 0.1.0
|
@ -0,0 +1,3 @@
|
|||||||
|
apiVersion: v2
|
||||||
|
name: subchart
|
||||||
|
version: 0.1.0
|
@ -0,0 +1 @@
|
|||||||
|
{{ .Values | toYaml }}
|
@ -0,0 +1,17 @@
|
|||||||
|
global:
|
||||||
|
hash:
|
||||||
|
key1: 1
|
||||||
|
key2: 2
|
||||||
|
key3: 3
|
||||||
|
key4: 4
|
||||||
|
key5: 5
|
||||||
|
key6: 6
|
||||||
|
|
||||||
|
|
||||||
|
hash:
|
||||||
|
key1: 1
|
||||||
|
key2: 2
|
||||||
|
key3: 3
|
||||||
|
key4: 4
|
||||||
|
key5: 5
|
||||||
|
key6: 6
|
@ -0,0 +1 @@
|
|||||||
|
{{ .Values | toYaml }}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue