-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2874 from tejal29/release_candidate
Changelog and update examples for releasing v0.38.0
- Loading branch information
Showing
23 changed files
with
208 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
apiVersion: skaffold/v1beta13 | ||
apiVersion: skaffold/v1beta14 | ||
kind: Config | ||
build: | ||
artifacts: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,4 @@ build: | |
deploy: | ||
kubectl: | ||
manifests: | ||
- k8s-* | ||
- k8s-* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
apiVersion: skaffold/v1beta13 | ||
apiVersion: skaffold/v1beta14 | ||
kind: Config | ||
build: | ||
artifacts: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
apiVersion: skaffold/v1beta13 | ||
apiVersion: skaffold/v1beta14 | ||
kind: Config | ||
build: | ||
googleCloudBuild: | ||
|
30 changes: 29 additions & 1 deletion
30
examples/helm-deployment-dependencies/skaffold-helm/values.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,42 @@ | ||
# Default values for skaffold-helm. | ||
# This is a YAML-formatted file. | ||
# Declare variables to be passed into your templates. | ||
replicaCount: 1 | ||
image: nginx:stable | ||
# This is the helm convention on declaring images | ||
# image: | ||
# repository: nginx | ||
# tag: stable | ||
# pullPolicy: IfNotPresent | ||
service: | ||
name: nginx | ||
type: ClusterIP | ||
externalPort: 80 | ||
internalPort: 80 | ||
ingress: | ||
enabled: false | ||
# Used to create an Ingress record. | ||
hosts: | ||
- chart-example.local | ||
annotations: | ||
# kubernetes.io/ingress.class: nginx | ||
# kubernetes.io/tls-acme: "true" | ||
tls: | ||
# Secrets must be manually created in the namespace. | ||
# - secretName: chart-example-tls | ||
# hosts: | ||
# - chart-example.local | ||
resources: {} | ||
# We usually recommend not to specify default resources and to leave this as a conscious | ||
# choice for the user. This also increases chances charts run on environments with little | ||
# resources, such as Minikube. If you do want to specify resources, uncomment the following | ||
# lines, adjust them as necessary, and remove the curly braces after 'resources:'. | ||
# limits: | ||
# cpu: 100m | ||
# memory: 128Mi | ||
# requests: | ||
# cpu: 100m | ||
# memory: 128Mi | ||
|
||
subchart: | ||
enabled: true | ||
enabled: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,28 @@ | ||
apiVersion: skaffold/v1beta13 | ||
apiVersion: skaffold/v1beta14 | ||
kind: Config | ||
build: | ||
tagPolicy: | ||
sha256: {} | ||
artifacts: | ||
- image: gcr.io/k8s-skaffold/skaffold-helm | ||
- image: gcr.io/k8s-skaffold/skaffold-helm | ||
deploy: | ||
helm: | ||
releases: | ||
- name: skaffold-helm | ||
chartPath: skaffold-helm | ||
skipBuildDependencies: true | ||
values: | ||
image: gcr.io/k8s-skaffold/skaffold-helm | ||
"skaffold-helm-subchart.image": gcr.io/k8s-skaffold/skaffold-helm | ||
- name: skaffold-helm | ||
chartPath: skaffold-helm | ||
#wait: true | ||
#valuesFiles: | ||
#- helm-skaffold-values.yaml | ||
skipBuildDependencies: true # Skip helm dep build | ||
values: | ||
image: gcr.io/k8s-skaffold/skaffold-helm | ||
"skaffold-helm-subchart.image": gcr.io/k8s-skaffold/skaffold-helm | ||
#recreatePods will pass --recreate-pods to helm upgrade | ||
#recreatePods: true | ||
#overrides builds an override values.yaml file to run with the helm deploy | ||
#overrides: | ||
# some: | ||
# key: someValue | ||
#setValues get appended to the helm deploy with --set. | ||
#setValues: | ||
#some.key: someValue |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,38 @@ | ||
# Default values for skaffold-helm. | ||
# This is a YAML-formatted file. | ||
# Declare variables to be passed into your templates. | ||
replicaCount: 1 | ||
# This is the helm convention on declaring images | ||
# image: | ||
# repository: nginx | ||
# tag: stable | ||
# pullPolicy: IfNotPresent | ||
service: | ||
name: nginx | ||
type: NodePort | ||
externalPort: 80 | ||
internalPort: 80 | ||
ingress: | ||
enabled: true | ||
# Used to create an Ingress record. | ||
hosts: | ||
# - chart-example.local | ||
annotations: | ||
# kubernetes.io/ingress.class: nginx | ||
# kubernetes.io/tls-acme: "true" | ||
tls: | ||
# Secrets must be manually created in the namespace. | ||
# - secretName: chart-example-tls | ||
# hosts: | ||
# - chart-example.local | ||
resources: {} | ||
# We usually recommend not to specify default resources and to leave this as a conscious | ||
# choice for the user. This also increases chances charts run on environments with little | ||
# resources, such as Minikube. If you do want to specify resources, uncomment the following | ||
# lines, adjust them as necessary, and remove the curly braces after 'resources:'. | ||
# limits: | ||
# cpu: 100m | ||
# memory: 128Mi | ||
# requests: | ||
# cpu: 100m | ||
# memory: 128Mi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,26 @@ | ||
apiVersion: skaffold/v1beta13 | ||
apiVersion: skaffold/v1beta14 | ||
kind: Config | ||
build: | ||
tagPolicy: | ||
sha256: {} | ||
artifacts: | ||
- image: gcr.io/k8s-skaffold/skaffold-helm | ||
sync: | ||
infer: | ||
- "static/**.html" | ||
- image: gcr.io/k8s-skaffold/skaffold-helm | ||
deploy: | ||
helm: | ||
releases: | ||
- name: skaffold-helm | ||
chartPath: skaffold-helm | ||
values: | ||
image: gcr.io/k8s-skaffold/skaffold-helm | ||
- name: skaffold-helm | ||
chartPath: skaffold-helm | ||
#wait: true | ||
#valuesFiles: | ||
#- helm-skaffold-values.yaml | ||
values: | ||
image: gcr.io/k8s-skaffold/skaffold-helm | ||
#recreatePods will pass --recreate-pods to helm upgrade | ||
#recreatePods: true | ||
#overrides builds an override values.yaml file to run with the helm deploy | ||
#overrides: | ||
# some: | ||
# key: someValue | ||
#setValues get appended to the helm deploy with --set. | ||
#setValues: | ||
#some.key: someValue |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
apiVersion: skaffold/v1beta13 | ||
apiVersion: skaffold/v1beta14 | ||
kind: Config | ||
build: | ||
artifacts: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
apiVersion: skaffold/v1beta13 | ||
apiVersion: skaffold/v1beta14 | ||
kind: Config | ||
build: | ||
artifacts: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
apiVersion: skaffold/v1beta13 | ||
apiVersion: skaffold/v1beta14 | ||
kind: Config | ||
build: | ||
artifacts: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
apiVersion: skaffold/v1beta13 | ||
apiVersion: skaffold/v1beta14 | ||
kind: Config | ||
deploy: | ||
kustomize: {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
apiVersion: skaffold/v1beta13 | ||
apiVersion: skaffold/v1beta14 | ||
kind: Config | ||
build: | ||
artifacts: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
apiVersion: skaffold/v1beta13 | ||
apiVersion: skaffold/v1beta14 | ||
kind: Config | ||
build: | ||
artifacts: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
apiVersion: skaffold/v1beta13 | ||
apiVersion: skaffold/v1beta14 | ||
kind: Config | ||
build: | ||
artifacts: | ||
|
Oops, something went wrong.