This repository has been archived by the owner on Mar 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow istio to be updated based on version releases (#721)
- Loading branch information
Showing
75 changed files
with
1,539 additions
and
3,462 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"v1": { | ||
"config": {}, | ||
"helmValues": "replicaCount: 1\nimage:\n repository: nginx\n tag: stable\n pullPolicy: Always\nservice:\n type: ClusterIP\n port: 82\ningress:\n enabled: false\n annotations: {}\n path: /\n hosts:\n - chart-example.local\n tls: []\nresources: {}\nnodeSelector: {}\ntolerations: []\naffinity: {}\n", | ||
"releaseName": "version", | ||
"helmValuesDefaults": "# Default values for basic.\n# This is a YAML-formatted file.\n# Declare variables to be passed into your templates.\n\nreplicaCount: 1\n\nimage:\n repository: nginx\n tag: stable\n pullPolicy: Always\n\nservice:\n type: ClusterIP\n port: 82\n\ningress:\n enabled: false\n annotations: {}\n # kubernetes.io/ingress.class: nginx\n # kubernetes.io/tls-acme: \"true\"\n path: /\n hosts:\n - chart-example.local\n tls: []\n # - secretName: chart-example-tls\n # hosts:\n # - chart-example.local\n\nresources: {}\n # We usually recommend not to specify default resources and to leave this as a conscious\n # choice for the user. This also increases chances charts run on environments with little\n # resources, such as Minikube. If you do want to specify resources, uncomment the following\n # lines, adjust them as necessary, and remove the curly braces after 'resources:'.\n # limits:\n # cpu: 100m\n # memory: 128Mi\n # requests:\n # cpu: 100m\n # memory: 128Mi\n\nnodeSelector: {}\n\ntolerations: []\n\naffinity: {}\n", | ||
"upstream": "https://github.com/replicatedhq/test-charts/tree/_latest_/version", | ||
"metadata": { | ||
"applicationType": "helm", | ||
"name": "version", | ||
"releaseNotes": "Bump versions chart to 0.0.2 (#12)", | ||
"version": "0.0.2" | ||
}, | ||
"contentSHA": "fae33489bcdae655ee68c369d392e7182281e21688f6c448ea376be009279c48" | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
--- | ||
# Source: version/templates/deployment.yaml | ||
apiVersion: apps/v1beta2 | ||
kind: Deployment | ||
metadata: | ||
name: version | ||
labels: | ||
app: version | ||
chart: version-0.0.2 | ||
release: version | ||
heritage: Tiller | ||
spec: | ||
replicas: 1 | ||
selector: | ||
matchLabels: | ||
app: version | ||
release: version | ||
template: | ||
metadata: | ||
labels: | ||
app: version | ||
release: version | ||
spec: | ||
containers: | ||
- name: version | ||
image: "nginx:stable" | ||
imagePullPolicy: Always | ||
ports: | ||
- name: http | ||
containerPort: 80 | ||
protocol: TCP | ||
livenessProbe: | ||
httpGet: | ||
path: / | ||
port: http | ||
readinessProbe: | ||
httpGet: | ||
path: / | ||
port: http | ||
resources: | ||
{} | ||
|
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
kind: "" | ||
apiversion: "" | ||
resources: | ||
- deployment.yaml | ||
- service.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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
# Source: version/templates/service.yaml | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: version | ||
labels: | ||
app: version | ||
chart: version-0.0.2 | ||
release: version | ||
heritage: Tiller | ||
spec: | ||
type: ClusterIP | ||
ports: | ||
- port: 82 | ||
targetPort: http | ||
protocol: TCP | ||
name: http | ||
selector: | ||
app: version | ||
release: version |
4 changes: 4 additions & 0 deletions
4
integration/update/version/expected/overlays/ship/kustomization.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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
kind: "" | ||
apiversion: "" | ||
bases: | ||
- ../../base |
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 |
---|---|---|
@@ -0,0 +1,58 @@ | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
labels: | ||
app: version | ||
chart: version-0.0.2 | ||
heritage: Tiller | ||
release: version | ||
name: version | ||
spec: | ||
ports: | ||
- name: http | ||
port: 82 | ||
protocol: TCP | ||
targetPort: http | ||
selector: | ||
app: version | ||
release: version | ||
type: ClusterIP | ||
--- | ||
apiVersion: apps/v1beta2 | ||
kind: Deployment | ||
metadata: | ||
labels: | ||
app: version | ||
chart: version-0.0.2 | ||
heritage: Tiller | ||
release: version | ||
name: version | ||
spec: | ||
replicas: 1 | ||
selector: | ||
matchLabels: | ||
app: version | ||
release: version | ||
template: | ||
metadata: | ||
labels: | ||
app: version | ||
release: version | ||
spec: | ||
containers: | ||
- image: nginx:stable | ||
imagePullPolicy: Always | ||
livenessProbe: | ||
httpGet: | ||
path: / | ||
port: http | ||
name: version | ||
ports: | ||
- containerPort: 80 | ||
name: http | ||
protocol: TCP | ||
readinessProbe: | ||
httpGet: | ||
path: / | ||
port: http | ||
resources: {} |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"v1": { | ||
"config": null, | ||
"helmValues": "replicaCount: 1\nimage:\n repository: nginx\n tag: stable\n pullPolicy: IfNotPresent\nservice:\n type: ClusterIP\n port: 80\ningress:\n enabled: false\n annotations: {}\n path: /\n hosts:\n - chart-example.local\n tls: []\nresources: {}\nnodeSelector: {}\ntolerations: []\naffinity: {}\n", | ||
"releaseName": "version", | ||
"helmValuesDefaults": "# Default values for basic.\n# This is a YAML-formatted file.\n# Declare variables to be passed into your templates.\n\nreplicaCount: 1\n\nimage:\n repository: nginx\n tag: stable\n pullPolicy: IfNotPresent\n\nservice:\n type: ClusterIP\n port: 80\n\ningress:\n enabled: false\n annotations: {}\n # kubernetes.io/ingress.class: nginx\n # kubernetes.io/tls-acme: \"true\"\n path: /\n hosts:\n - chart-example.local\n tls: []\n # - secretName: chart-example-tls\n # hosts:\n # - chart-example.local\n\nresources: {}\n # We usually recommend not to specify default resources and to leave this as a conscious\n # choice for the user. This also increases chances charts run on environments with little\n # resources, such as Minikube. If you do want to specify resources, uncomment the following\n # lines, adjust them as necessary, and remove the curly braces after 'resources:'.\n # limits:\n # cpu: 100m\n # memory: 128Mi\n # requests:\n # cpu: 100m\n # memory: 128Mi\n\nnodeSelector: {}\n\ntolerations: []\n\naffinity: {}\n", | ||
"upstream": "https://github.com/replicatedhq/test-charts/tree/_latest_/version", | ||
"metadata": { | ||
"applicationType": "helm", | ||
"name": "version", | ||
"releaseNotes": "Add a new version chart for versioned updates (#11)", | ||
"version": "0.0.1" | ||
}, | ||
"contentSHA": "4adecfde17359b4fb196e700785a36aefa4a337b64b96f2defdc7e6f55ea24d2" | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
args: ["--prefer-git"] |
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
Oops, something went wrong.