Merge "chore(**/config_map.yaml): use linux line endings"
This commit is contained in:
commit
877149a753
@ -1,83 +1,83 @@
|
|||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: ConfigMap
|
kind: ConfigMap
|
||||||
metadata:
|
metadata:
|
||||||
name: deployment-flow
|
name: deployment-flow
|
||||||
data:
|
data:
|
||||||
cluster.json: |
|
cluster.json: |
|
||||||
{
|
{
|
||||||
"namespace": "{{ $.Values.namespace }}",
|
"namespace": "{{ $.Values.namespace }}",
|
||||||
"use_existing_cluster": "true"
|
"use_existing_cluster": "true"
|
||||||
}
|
}
|
||||||
image.json: |
|
image.json: |
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
"image_from": "harbor-core.jarvis.local/library/ubuntu:focal",
|
"image_from": "harbor-core.jarvis.local/library/ubuntu:focal",
|
||||||
"build_from_source": true,
|
"build_from_source": true,
|
||||||
"image_name": "amf",
|
"image_name": "amf",
|
||||||
"project": "amf",
|
"project": "amf",
|
||||||
"repo": "amf",
|
"repo": "amf",
|
||||||
"image_fullname": "amf/amf:1.0",
|
"image_fullname": "amf/amf:1.0",
|
||||||
"path": "images/amf",
|
"path": "images/amf",
|
||||||
"namespace": "{{ $.Values.namespace }}",
|
"namespace": "{{ $.Values.namespace }}",
|
||||||
"build": {
|
"build": {
|
||||||
"git_repo": "{{ $.Values.git_repo }}",
|
"git_repo": "{{ $.Values.git_repo }}",
|
||||||
"target_loc": "/src/checkout/amf",
|
"target_loc": "/src/checkout/amf",
|
||||||
"refspec": "{{ $.Values.refspec }}",
|
"refspec": "{{ $.Values.refspec }}",
|
||||||
"version": "refs/changes/*:refs/changes/*"
|
"version": "refs/changes/*:refs/changes/*"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
chart.json: |
|
chart.json: |
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
"chart_name": "amf",
|
"chart_name": "amf",
|
||||||
"project": "amf",
|
"project": "amf",
|
||||||
"repo": "amf",
|
"repo": "amf",
|
||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"build_from_source": true,
|
"build_from_source": true,
|
||||||
"path": "charts",
|
"path": "charts",
|
||||||
"build": {
|
"build": {
|
||||||
"git_repo": "{{ $.Values.git_repo }}",
|
"git_repo": "{{ $.Values.git_repo }}",
|
||||||
"target_loc": "/src/checkout/amf",
|
"target_loc": "/src/checkout/amf",
|
||||||
"refspec": "{{ $.Values.refspec }}",
|
"refspec": "{{ $.Values.refspec }}",
|
||||||
"version": "refs/changes/*:refs/changes/*"
|
"version": "refs/changes/*:refs/changes/*"
|
||||||
},
|
},
|
||||||
"namespace": "{{ $.Values.namespace }}",
|
"namespace": "{{ $.Values.namespace }}",
|
||||||
"release_name": "amf",
|
"release_name": "amf",
|
||||||
"images": {
|
"images": {
|
||||||
"applications": {
|
"applications": {
|
||||||
"amf": {
|
"amf": {
|
||||||
"tag": "1.0",
|
"tag": "1.0",
|
||||||
"name": "amf",
|
"name": "amf",
|
||||||
"repo": "amf"
|
"repo": "amf"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
default.json: |
|
default.json: |
|
||||||
{
|
{
|
||||||
"proxy": {
|
"proxy": {
|
||||||
"http": "",
|
"http": "",
|
||||||
"https": "",
|
"https": "",
|
||||||
"noproxy": "",
|
"noproxy": "",
|
||||||
"enabled": false
|
"enabled": false
|
||||||
},
|
},
|
||||||
"docker_content_trust": {
|
"docker_content_trust": {
|
||||||
"DOCKER_CONTENT_TRUST": 1,
|
"DOCKER_CONTENT_TRUST": 1,
|
||||||
"DOCKER_CONTENT_TRUST_SERVER": "https://harbor-notary.jarvis.local",
|
"DOCKER_CONTENT_TRUST_SERVER": "https://harbor-notary.jarvis.local",
|
||||||
"DOCKER_CONTENT_TRUST_ROOT_PASSPHRASE": "passphrase",
|
"DOCKER_CONTENT_TRUST_ROOT_PASSPHRASE": "passphrase",
|
||||||
"DOCKER_CONTENT_TRUST_REPOSITORY_PASSPHRASE": "passphrase"
|
"DOCKER_CONTENT_TRUST_REPOSITORY_PASSPHRASE": "passphrase"
|
||||||
},
|
},
|
||||||
"chart_registry_url": "harbor-core.jarvis.local/chartrepo",
|
"chart_registry_url": "harbor-core.jarvis.local/chartrepo",
|
||||||
"chart_repository": "jarvis-harbor",
|
"chart_repository": "jarvis-harbor",
|
||||||
"docker_registry": "harbor-core.jarvis.local",
|
"docker_registry": "harbor-core.jarvis.local",
|
||||||
"harbor_secret_mounted_path": "/workspace/helm-creds",
|
"harbor_secret_mounted_path": "/workspace/helm-creds",
|
||||||
"clone_async_batch_size": 20,
|
"clone_async_batch_size": 20,
|
||||||
"chart_async_batch_size": 20,
|
"chart_async_batch_size": 20,
|
||||||
"image_async_batch_size": 2
|
"image_async_batch_size": 2
|
||||||
}
|
}
|
||||||
cleanup.json: |
|
cleanup.json: |
|
||||||
{
|
{
|
||||||
"remove_artifacts": "true"
|
"remove_artifacts": "true"
|
||||||
}
|
}
|
||||||
|
@ -1,83 +1,83 @@
|
|||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: ConfigMap
|
kind: ConfigMap
|
||||||
metadata:
|
metadata:
|
||||||
name: deployment-flow
|
name: deployment-flow
|
||||||
data:
|
data:
|
||||||
cluster.json: |
|
cluster.json: |
|
||||||
{
|
{
|
||||||
"namespace": "{{ $.Values.namespace }}",
|
"namespace": "{{ $.Values.namespace }}",
|
||||||
"use_existing_cluster": "true"
|
"use_existing_cluster": "true"
|
||||||
}
|
}
|
||||||
image.json: |
|
image.json: |
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
"image_from": "harbor-core.jarvis.local/library/ubuntu:focal",
|
"image_from": "harbor-core.jarvis.local/library/ubuntu:focal",
|
||||||
"build_from_source": true,
|
"build_from_source": true,
|
||||||
"image_name": "ausf",
|
"image_name": "ausf",
|
||||||
"project": "ausf",
|
"project": "ausf",
|
||||||
"repo": "ausf",
|
"repo": "ausf",
|
||||||
"image_fullname": "ausf/ausf:1.0",
|
"image_fullname": "ausf/ausf:1.0",
|
||||||
"path": "images/ausf",
|
"path": "images/ausf",
|
||||||
"namespace": "{{ $.Values.namespace }}",
|
"namespace": "{{ $.Values.namespace }}",
|
||||||
"build": {
|
"build": {
|
||||||
"git_repo": "{{ $.Values.git_repo }}",
|
"git_repo": "{{ $.Values.git_repo }}",
|
||||||
"target_loc": "/src/checkout/ausf",
|
"target_loc": "/src/checkout/ausf",
|
||||||
"refspec": "{{ $.Values.refspec }}",
|
"refspec": "{{ $.Values.refspec }}",
|
||||||
"version": "refs/changes/*:refs/changes/*"
|
"version": "refs/changes/*:refs/changes/*"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
chart.json: |
|
chart.json: |
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
"chart_name": "ausf",
|
"chart_name": "ausf",
|
||||||
"project": "ausf",
|
"project": "ausf",
|
||||||
"repo": "ausf",
|
"repo": "ausf",
|
||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"build_from_source": true,
|
"build_from_source": true,
|
||||||
"path": "charts",
|
"path": "charts",
|
||||||
"build": {
|
"build": {
|
||||||
"git_repo": "{{ $.Values.git_repo }}",
|
"git_repo": "{{ $.Values.git_repo }}",
|
||||||
"target_loc": "/src/checkout/ausf",
|
"target_loc": "/src/checkout/ausf",
|
||||||
"refspec": "{{ $.Values.refspec }}",
|
"refspec": "{{ $.Values.refspec }}",
|
||||||
"version": "refs/changes/*:refs/changes/*"
|
"version": "refs/changes/*:refs/changes/*"
|
||||||
},
|
},
|
||||||
"namespace": "{{ $.Values.namespace }}",
|
"namespace": "{{ $.Values.namespace }}",
|
||||||
"release_name": "ausf",
|
"release_name": "ausf",
|
||||||
"images": {
|
"images": {
|
||||||
"applications": {
|
"applications": {
|
||||||
"ausf": {
|
"ausf": {
|
||||||
"tag": "1.0",
|
"tag": "1.0",
|
||||||
"name": "ausf",
|
"name": "ausf",
|
||||||
"repo": "ausf"
|
"repo": "ausf"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
default.json: |
|
default.json: |
|
||||||
{
|
{
|
||||||
"proxy": {
|
"proxy": {
|
||||||
"http": "",
|
"http": "",
|
||||||
"https": "",
|
"https": "",
|
||||||
"noproxy": "",
|
"noproxy": "",
|
||||||
"enabled": false
|
"enabled": false
|
||||||
},
|
},
|
||||||
"docker_content_trust": {
|
"docker_content_trust": {
|
||||||
"DOCKER_CONTENT_TRUST": 1,
|
"DOCKER_CONTENT_TRUST": 1,
|
||||||
"DOCKER_CONTENT_TRUST_SERVER": "https://harbor-notary.jarvis.local",
|
"DOCKER_CONTENT_TRUST_SERVER": "https://harbor-notary.jarvis.local",
|
||||||
"DOCKER_CONTENT_TRUST_ROOT_PASSPHRASE": "passphrase",
|
"DOCKER_CONTENT_TRUST_ROOT_PASSPHRASE": "passphrase",
|
||||||
"DOCKER_CONTENT_TRUST_REPOSITORY_PASSPHRASE": "passphrase"
|
"DOCKER_CONTENT_TRUST_REPOSITORY_PASSPHRASE": "passphrase"
|
||||||
},
|
},
|
||||||
"chart_registry_url": "harbor-core.jarvis.local/chartrepo",
|
"chart_registry_url": "harbor-core.jarvis.local/chartrepo",
|
||||||
"chart_repository": "jarvis-harbor",
|
"chart_repository": "jarvis-harbor",
|
||||||
"docker_registry": "harbor-core.jarvis.local",
|
"docker_registry": "harbor-core.jarvis.local",
|
||||||
"harbor_secret_mounted_path": "/workspace/helm-creds",
|
"harbor_secret_mounted_path": "/workspace/helm-creds",
|
||||||
"clone_async_batch_size": 20,
|
"clone_async_batch_size": 20,
|
||||||
"chart_async_batch_size": 20,
|
"chart_async_batch_size": 20,
|
||||||
"image_async_batch_size": 2
|
"image_async_batch_size": 2
|
||||||
}
|
}
|
||||||
cleanup.json: |
|
cleanup.json: |
|
||||||
{
|
{
|
||||||
"remove_artifacts": "true"
|
"remove_artifacts": "true"
|
||||||
}
|
}
|
||||||
|
@ -1,79 +1,79 @@
|
|||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: ConfigMap
|
kind: ConfigMap
|
||||||
metadata:
|
metadata:
|
||||||
name: deployment-flow
|
name: deployment-flow
|
||||||
data:
|
data:
|
||||||
cluster.json: |
|
cluster.json: |
|
||||||
{
|
{
|
||||||
"use_existing_cluster": "true"
|
"use_existing_cluster": "true"
|
||||||
}
|
}
|
||||||
image.json: |
|
image.json: |
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
"image_from": "harbor-core.jarvis.local/library/ubuntu:focal",
|
"image_from": "harbor-core.jarvis.local/library/ubuntu:focal",
|
||||||
"build_from_source": false,
|
"build_from_source": false,
|
||||||
"image_name": "mongodb-sharded",
|
"image_name": "mongodb-sharded",
|
||||||
"project": "mongodb",
|
"project": "mongodb",
|
||||||
"repo": "mongodb-sharded",
|
"repo": "mongodb-sharded",
|
||||||
"tag": "4.4.3",
|
"tag": "4.4.3",
|
||||||
"image_fullname": "mongodb/mongodb-sharded:4.4.3",
|
"image_fullname": "mongodb/mongodb-sharded:4.4.3",
|
||||||
"path": "",
|
"path": "",
|
||||||
"build": {
|
"build": {
|
||||||
"git_repo": "docker.io/bitnami/mongodb-sharded",
|
"git_repo": "docker.io/bitnami/mongodb-sharded",
|
||||||
"tag": "4.4.3-debian-10-r44"
|
"tag": "4.4.3-debian-10-r44"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
chart.json: |
|
chart.json: |
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
"chart_name": "mongodb-sharded",
|
"chart_name": "mongodb-sharded",
|
||||||
"project": "mongodb",
|
"project": "mongodb",
|
||||||
"repo": "mongodb-sharded",
|
"repo": "mongodb-sharded",
|
||||||
"version": "3.3.3",
|
"version": "3.3.3",
|
||||||
"build_from_source": false,
|
"build_from_source": false,
|
||||||
"path": "",
|
"path": "",
|
||||||
"build": {
|
"build": {
|
||||||
"name": "https://charts.bitnami.com/bitnami",
|
"name": "https://charts.bitnami.com/bitnami",
|
||||||
"local_repo": "bitnami_mongodb",
|
"local_repo": "bitnami_mongodb",
|
||||||
"target_loc": "/src/fetch/charts"
|
"target_loc": "/src/fetch/charts"
|
||||||
},
|
},
|
||||||
"namespace": "development-pipeline",
|
"namespace": "development-pipeline",
|
||||||
"release_name": "mongodb-bitnami",
|
"release_name": "mongodb-bitnami",
|
||||||
"images": {
|
"images": {
|
||||||
"applications": {
|
"applications": {
|
||||||
"mongodb-sharded": {
|
"mongodb-sharded": {
|
||||||
"tag": "1.0",
|
"tag": "1.0",
|
||||||
"name": "mongodb",
|
"name": "mongodb",
|
||||||
"repo": "mongodb"
|
"repo": "mongodb"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
default.json: |
|
default.json: |
|
||||||
{
|
{
|
||||||
"proxy": {
|
"proxy": {
|
||||||
"http": "",
|
"http": "",
|
||||||
"https": "",
|
"https": "",
|
||||||
"noproxy": "",
|
"noproxy": "",
|
||||||
"enabled": false
|
"enabled": false
|
||||||
},
|
},
|
||||||
"docker_content_trust": {
|
"docker_content_trust": {
|
||||||
"DOCKER_CONTENT_TRUST": 1,
|
"DOCKER_CONTENT_TRUST": 1,
|
||||||
"DOCKER_CONTENT_TRUST_SERVER": "https://harbor-notary.jarvis.local",
|
"DOCKER_CONTENT_TRUST_SERVER": "https://harbor-notary.jarvis.local",
|
||||||
"DOCKER_CONTENT_TRUST_ROOT_PASSPHRASE": "passphrase",
|
"DOCKER_CONTENT_TRUST_ROOT_PASSPHRASE": "passphrase",
|
||||||
"DOCKER_CONTENT_TRUST_REPOSITORY_PASSPHRASE": "passphrase"
|
"DOCKER_CONTENT_TRUST_REPOSITORY_PASSPHRASE": "passphrase"
|
||||||
},
|
},
|
||||||
"chart_registry_url": "harbor-core.jarvis.local/chartrepo",
|
"chart_registry_url": "harbor-core.jarvis.local/chartrepo",
|
||||||
"chart_repository": "jarvis-harbor",
|
"chart_repository": "jarvis-harbor",
|
||||||
"docker_registry": "harbor-core.jarvis.local",
|
"docker_registry": "harbor-core.jarvis.local",
|
||||||
"harbor_secret_mounted_path": "/workspace/helm-creds",
|
"harbor_secret_mounted_path": "/workspace/helm-creds",
|
||||||
"clone_async_batch_size": 20,
|
"clone_async_batch_size": 20,
|
||||||
"chart_async_batch_size": 20,
|
"chart_async_batch_size": 20,
|
||||||
"image_async_batch_size": 2
|
"image_async_batch_size": 2
|
||||||
}
|
}
|
||||||
cleanup.json: |
|
cleanup.json: |
|
||||||
{
|
{
|
||||||
"remove_artifacts": "true"
|
"remove_artifacts": "true"
|
||||||
}
|
}
|
||||||
|
@ -1,83 +1,83 @@
|
|||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: ConfigMap
|
kind: ConfigMap
|
||||||
metadata:
|
metadata:
|
||||||
name: deployment-flow
|
name: deployment-flow
|
||||||
data:
|
data:
|
||||||
cluster.json: |
|
cluster.json: |
|
||||||
{
|
{
|
||||||
"namespace": "{{ $.Values.namespace }}",
|
"namespace": "{{ $.Values.namespace }}",
|
||||||
"use_existing_cluster": "true"
|
"use_existing_cluster": "true"
|
||||||
}
|
}
|
||||||
image.json: |
|
image.json: |
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
"image_from": "harbor-core.jarvis.local/library/ubuntu:focal",
|
"image_from": "harbor-core.jarvis.local/library/ubuntu:focal",
|
||||||
"build_from_source": true,
|
"build_from_source": true,
|
||||||
"image_name": "nrf",
|
"image_name": "nrf",
|
||||||
"project": "nrf",
|
"project": "nrf",
|
||||||
"repo": "nrf",
|
"repo": "nrf",
|
||||||
"image_fullname": "nrf/nrf:1.0",
|
"image_fullname": "nrf/nrf:1.0",
|
||||||
"path": "images/nrf",
|
"path": "images/nrf",
|
||||||
"namespace": "{{ $.Values.namespace }}",
|
"namespace": "{{ $.Values.namespace }}",
|
||||||
"build": {
|
"build": {
|
||||||
"git_repo": "{{ $.Values.git_repo }}",
|
"git_repo": "{{ $.Values.git_repo }}",
|
||||||
"target_loc": "/src/checkout/nrf",
|
"target_loc": "/src/checkout/nrf",
|
||||||
"refspec": "{{ $.Values.refspec }}",
|
"refspec": "{{ $.Values.refspec }}",
|
||||||
"version": "refs/changes/*:refs/changes/*"
|
"version": "refs/changes/*:refs/changes/*"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
chart.json: |
|
chart.json: |
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
"chart_name": "nrf",
|
"chart_name": "nrf",
|
||||||
"project": "nrf",
|
"project": "nrf",
|
||||||
"repo": "nrf",
|
"repo": "nrf",
|
||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"build_from_source": true,
|
"build_from_source": true,
|
||||||
"path": "charts",
|
"path": "charts",
|
||||||
"build": {
|
"build": {
|
||||||
"git_repo": "{{ $.Values.git_repo }}",
|
"git_repo": "{{ $.Values.git_repo }}",
|
||||||
"target_loc": "/src/checkout/nrf",
|
"target_loc": "/src/checkout/nrf",
|
||||||
"refspec": "{{ $.Values.refspec }}",
|
"refspec": "{{ $.Values.refspec }}",
|
||||||
"version": "refs/changes/*:refs/changes/*"
|
"version": "refs/changes/*:refs/changes/*"
|
||||||
},
|
},
|
||||||
"namespace": "{{ $.Values.namespace }}",
|
"namespace": "{{ $.Values.namespace }}",
|
||||||
"release_name": "nrf",
|
"release_name": "nrf",
|
||||||
"images": {
|
"images": {
|
||||||
"applications": {
|
"applications": {
|
||||||
"nrf": {
|
"nrf": {
|
||||||
"tag": "1.0",
|
"tag": "1.0",
|
||||||
"name": "nrf",
|
"name": "nrf",
|
||||||
"repo": "nrf"
|
"repo": "nrf"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
default.json: |
|
default.json: |
|
||||||
{
|
{
|
||||||
"proxy": {
|
"proxy": {
|
||||||
"http": "",
|
"http": "",
|
||||||
"https": "",
|
"https": "",
|
||||||
"noproxy": "",
|
"noproxy": "",
|
||||||
"enabled": false
|
"enabled": false
|
||||||
},
|
},
|
||||||
"docker_content_trust": {
|
"docker_content_trust": {
|
||||||
"DOCKER_CONTENT_TRUST": 1,
|
"DOCKER_CONTENT_TRUST": 1,
|
||||||
"DOCKER_CONTENT_TRUST_SERVER": "https://harbor-notary.jarvis.local",
|
"DOCKER_CONTENT_TRUST_SERVER": "https://harbor-notary.jarvis.local",
|
||||||
"DOCKER_CONTENT_TRUST_ROOT_PASSPHRASE": "passphrase",
|
"DOCKER_CONTENT_TRUST_ROOT_PASSPHRASE": "passphrase",
|
||||||
"DOCKER_CONTENT_TRUST_REPOSITORY_PASSPHRASE": "passphrase"
|
"DOCKER_CONTENT_TRUST_REPOSITORY_PASSPHRASE": "passphrase"
|
||||||
},
|
},
|
||||||
"chart_registry_url": "harbor-core.jarvis.local/chartrepo",
|
"chart_registry_url": "harbor-core.jarvis.local/chartrepo",
|
||||||
"chart_repository": "jarvis-harbor",
|
"chart_repository": "jarvis-harbor",
|
||||||
"docker_registry": "harbor-core.jarvis.local",
|
"docker_registry": "harbor-core.jarvis.local",
|
||||||
"harbor_secret_mounted_path": "/workspace/helm-creds",
|
"harbor_secret_mounted_path": "/workspace/helm-creds",
|
||||||
"clone_async_batch_size": 20,
|
"clone_async_batch_size": 20,
|
||||||
"chart_async_batch_size": 20,
|
"chart_async_batch_size": 20,
|
||||||
"image_async_batch_size": 2
|
"image_async_batch_size": 2
|
||||||
}
|
}
|
||||||
cleanup.json: |
|
cleanup.json: |
|
||||||
{
|
{
|
||||||
"remove_artifacts": "true"
|
"remove_artifacts": "true"
|
||||||
}
|
}
|
||||||
|
@ -1,83 +1,83 @@
|
|||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: ConfigMap
|
kind: ConfigMap
|
||||||
metadata:
|
metadata:
|
||||||
name: deployment-flow
|
name: deployment-flow
|
||||||
data:
|
data:
|
||||||
cluster.json: |
|
cluster.json: |
|
||||||
{
|
{
|
||||||
"namespace": "{{ $.Values.namespace }}",
|
"namespace": "{{ $.Values.namespace }}",
|
||||||
"use_existing_cluster": "true"
|
"use_existing_cluster": "true"
|
||||||
}
|
}
|
||||||
image.json: |
|
image.json: |
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
"image_from": "harbor-core.jarvis.local/library/ubuntu:focal",
|
"image_from": "harbor-core.jarvis.local/library/ubuntu:focal",
|
||||||
"build_from_source": true,
|
"build_from_source": true,
|
||||||
"image_name": "pcf",
|
"image_name": "pcf",
|
||||||
"project": "pcf",
|
"project": "pcf",
|
||||||
"repo": "pcf",
|
"repo": "pcf",
|
||||||
"image_fullname": "pcf/pcf:1.0",
|
"image_fullname": "pcf/pcf:1.0",
|
||||||
"path": "images/pcf",
|
"path": "images/pcf",
|
||||||
"namespace": "{{ $.Values.namespace }}",
|
"namespace": "{{ $.Values.namespace }}",
|
||||||
"build": {
|
"build": {
|
||||||
"git_repo": "{{ $.Values.git_repo }}",
|
"git_repo": "{{ $.Values.git_repo }}",
|
||||||
"target_loc": "/src/checkout/pcf",
|
"target_loc": "/src/checkout/pcf",
|
||||||
"refspec": "{{ $.Values.refspec }}",
|
"refspec": "{{ $.Values.refspec }}",
|
||||||
"version": "refs/changes/*:refs/changes/*"
|
"version": "refs/changes/*:refs/changes/*"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
chart.json: |
|
chart.json: |
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
"chart_name": "pcf",
|
"chart_name": "pcf",
|
||||||
"project": "pcf",
|
"project": "pcf",
|
||||||
"repo": "pcf",
|
"repo": "pcf",
|
||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"build_from_source": true,
|
"build_from_source": true,
|
||||||
"path": "charts",
|
"path": "charts",
|
||||||
"build": {
|
"build": {
|
||||||
"git_repo": "{{ $.Values.git_repo }}",
|
"git_repo": "{{ $.Values.git_repo }}",
|
||||||
"target_loc": "/src/checkout/pcf",
|
"target_loc": "/src/checkout/pcf",
|
||||||
"refspec": "{{ $.Values.refspec }}",
|
"refspec": "{{ $.Values.refspec }}",
|
||||||
"version": "refs/changes/*:refs/changes/*"
|
"version": "refs/changes/*:refs/changes/*"
|
||||||
},
|
},
|
||||||
"namespace": "{{ $.Values.namespace }}",
|
"namespace": "{{ $.Values.namespace }}",
|
||||||
"release_name": "pcf",
|
"release_name": "pcf",
|
||||||
"images": {
|
"images": {
|
||||||
"applications": {
|
"applications": {
|
||||||
"pcf": {
|
"pcf": {
|
||||||
"tag": "1.0",
|
"tag": "1.0",
|
||||||
"name": "pcf",
|
"name": "pcf",
|
||||||
"repo": "pcf"
|
"repo": "pcf"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
default.json: |
|
default.json: |
|
||||||
{
|
{
|
||||||
"proxy": {
|
"proxy": {
|
||||||
"http": "",
|
"http": "",
|
||||||
"https": "",
|
"https": "",
|
||||||
"noproxy": "",
|
"noproxy": "",
|
||||||
"enabled": false
|
"enabled": false
|
||||||
},
|
},
|
||||||
"docker_content_trust": {
|
"docker_content_trust": {
|
||||||
"DOCKER_CONTENT_TRUST": 1,
|
"DOCKER_CONTENT_TRUST": 1,
|
||||||
"DOCKER_CONTENT_TRUST_SERVER": "https://harbor-notary.jarvis.local",
|
"DOCKER_CONTENT_TRUST_SERVER": "https://harbor-notary.jarvis.local",
|
||||||
"DOCKER_CONTENT_TRUST_ROOT_PASSPHRASE": "passphrase",
|
"DOCKER_CONTENT_TRUST_ROOT_PASSPHRASE": "passphrase",
|
||||||
"DOCKER_CONTENT_TRUST_REPOSITORY_PASSPHRASE": "passphrase"
|
"DOCKER_CONTENT_TRUST_REPOSITORY_PASSPHRASE": "passphrase"
|
||||||
},
|
},
|
||||||
"chart_registry_url": "harbor-core.jarvis.local/chartrepo",
|
"chart_registry_url": "harbor-core.jarvis.local/chartrepo",
|
||||||
"chart_repository": "jarvis-harbor",
|
"chart_repository": "jarvis-harbor",
|
||||||
"docker_registry": "harbor-core.jarvis.local",
|
"docker_registry": "harbor-core.jarvis.local",
|
||||||
"harbor_secret_mounted_path": "/workspace/helm-creds",
|
"harbor_secret_mounted_path": "/workspace/helm-creds",
|
||||||
"clone_async_batch_size": 20,
|
"clone_async_batch_size": 20,
|
||||||
"chart_async_batch_size": 20,
|
"chart_async_batch_size": 20,
|
||||||
"image_async_batch_size": 2
|
"image_async_batch_size": 2
|
||||||
}
|
}
|
||||||
cleanup.json: |
|
cleanup.json: |
|
||||||
{
|
{
|
||||||
"remove_artifacts": "true"
|
"remove_artifacts": "true"
|
||||||
}
|
}
|
||||||
|
@ -1,83 +1,83 @@
|
|||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: ConfigMap
|
kind: ConfigMap
|
||||||
metadata:
|
metadata:
|
||||||
name: deployment-flow
|
name: deployment-flow
|
||||||
data:
|
data:
|
||||||
cluster.json: |
|
cluster.json: |
|
||||||
{
|
{
|
||||||
"namespace": "{{ $.Values.namespace }}",
|
"namespace": "{{ $.Values.namespace }}",
|
||||||
"use_existing_cluster": "true"
|
"use_existing_cluster": "true"
|
||||||
}
|
}
|
||||||
image.json: |
|
image.json: |
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
"image_from": "harbor-core.jarvis.local/library/ubuntu:focal",
|
"image_from": "harbor-core.jarvis.local/library/ubuntu:focal",
|
||||||
"build_from_source": true,
|
"build_from_source": true,
|
||||||
"image_name": "smf",
|
"image_name": "smf",
|
||||||
"project": "smf",
|
"project": "smf",
|
||||||
"repo": "smf",
|
"repo": "smf",
|
||||||
"image_fullname": "smf/smf:1.0",
|
"image_fullname": "smf/smf:1.0",
|
||||||
"path": "images/smf",
|
"path": "images/smf",
|
||||||
"namespace": "{{ $.Values.namespace }}",
|
"namespace": "{{ $.Values.namespace }}",
|
||||||
"build": {
|
"build": {
|
||||||
"git_repo": "{{ $.Values.git_repo }}",
|
"git_repo": "{{ $.Values.git_repo }}",
|
||||||
"target_loc": "/src/checkout/smf",
|
"target_loc": "/src/checkout/smf",
|
||||||
"refspec": "{{ $.Values.refspec }}",
|
"refspec": "{{ $.Values.refspec }}",
|
||||||
"version": "refs/changes/*:refs/changes/*"
|
"version": "refs/changes/*:refs/changes/*"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
chart.json: |
|
chart.json: |
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
"chart_name": "smf",
|
"chart_name": "smf",
|
||||||
"project": "smf",
|
"project": "smf",
|
||||||
"repo": "smf",
|
"repo": "smf",
|
||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"build_from_source": true,
|
"build_from_source": true,
|
||||||
"path": "charts",
|
"path": "charts",
|
||||||
"build": {
|
"build": {
|
||||||
"git_repo": "{{ $.Values.git_repo }}",
|
"git_repo": "{{ $.Values.git_repo }}",
|
||||||
"target_loc": "/src/checkout/smf",
|
"target_loc": "/src/checkout/smf",
|
||||||
"refspec": "{{ $.Values.refspec }}",
|
"refspec": "{{ $.Values.refspec }}",
|
||||||
"version": "refs/changes/*:refs/changes/*"
|
"version": "refs/changes/*:refs/changes/*"
|
||||||
},
|
},
|
||||||
"namespace": "{{ $.Values.namespace }}",
|
"namespace": "{{ $.Values.namespace }}",
|
||||||
"release_name": "smf",
|
"release_name": "smf",
|
||||||
"images": {
|
"images": {
|
||||||
"applications": {
|
"applications": {
|
||||||
"smf": {
|
"smf": {
|
||||||
"tag": "1.0",
|
"tag": "1.0",
|
||||||
"name": "smf",
|
"name": "smf",
|
||||||
"repo": "smf"
|
"repo": "smf"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
default.json: |
|
default.json: |
|
||||||
{
|
{
|
||||||
"proxy": {
|
"proxy": {
|
||||||
"http": "",
|
"http": "",
|
||||||
"https": "",
|
"https": "",
|
||||||
"noproxy": "",
|
"noproxy": "",
|
||||||
"enabled": false
|
"enabled": false
|
||||||
},
|
},
|
||||||
"docker_content_trust": {
|
"docker_content_trust": {
|
||||||
"DOCKER_CONTENT_TRUST": 1,
|
"DOCKER_CONTENT_TRUST": 1,
|
||||||
"DOCKER_CONTENT_TRUST_SERVER": "https://harbor-notary.jarvis.local",
|
"DOCKER_CONTENT_TRUST_SERVER": "https://harbor-notary.jarvis.local",
|
||||||
"DOCKER_CONTENT_TRUST_ROOT_PASSPHRASE": "passphrase",
|
"DOCKER_CONTENT_TRUST_ROOT_PASSPHRASE": "passphrase",
|
||||||
"DOCKER_CONTENT_TRUST_REPOSITORY_PASSPHRASE": "passphrase"
|
"DOCKER_CONTENT_TRUST_REPOSITORY_PASSPHRASE": "passphrase"
|
||||||
},
|
},
|
||||||
"chart_registry_url": "harbor-core.jarvis.local/chartrepo",
|
"chart_registry_url": "harbor-core.jarvis.local/chartrepo",
|
||||||
"chart_repository": "jarvis-harbor",
|
"chart_repository": "jarvis-harbor",
|
||||||
"docker_registry": "harbor-core.jarvis.local",
|
"docker_registry": "harbor-core.jarvis.local",
|
||||||
"harbor_secret_mounted_path": "/workspace/helm-creds",
|
"harbor_secret_mounted_path": "/workspace/helm-creds",
|
||||||
"clone_async_batch_size": 20,
|
"clone_async_batch_size": 20,
|
||||||
"chart_async_batch_size": 20,
|
"chart_async_batch_size": 20,
|
||||||
"image_async_batch_size": 2
|
"image_async_batch_size": 2
|
||||||
}
|
}
|
||||||
cleanup.json: |
|
cleanup.json: |
|
||||||
{
|
{
|
||||||
"remove_artifacts": "true"
|
"remove_artifacts": "true"
|
||||||
}
|
}
|
||||||
|
@ -1,83 +1,83 @@
|
|||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: ConfigMap
|
kind: ConfigMap
|
||||||
metadata:
|
metadata:
|
||||||
name: deployment-flow
|
name: deployment-flow
|
||||||
data:
|
data:
|
||||||
cluster.json: |
|
cluster.json: |
|
||||||
{
|
{
|
||||||
"namespace": "{{ $.Values.namespace }}",
|
"namespace": "{{ $.Values.namespace }}",
|
||||||
"use_existing_cluster": "true"
|
"use_existing_cluster": "true"
|
||||||
}
|
}
|
||||||
image.json: |
|
image.json: |
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
"image_from": "harbor-core.jarvis.local/library/ubuntu:focal",
|
"image_from": "harbor-core.jarvis.local/library/ubuntu:focal",
|
||||||
"build_from_source": true,
|
"build_from_source": true,
|
||||||
"image_name": "udm",
|
"image_name": "udm",
|
||||||
"project": "udm",
|
"project": "udm",
|
||||||
"repo": "udm",
|
"repo": "udm",
|
||||||
"image_fullname": "udm/udm:1.0",
|
"image_fullname": "udm/udm:1.0",
|
||||||
"path": "images/udm",
|
"path": "images/udm",
|
||||||
"namespace": "{{ $.Values.namespace }}",
|
"namespace": "{{ $.Values.namespace }}",
|
||||||
"build": {
|
"build": {
|
||||||
"git_repo": "{{ $.Values.git_repo }}",
|
"git_repo": "{{ $.Values.git_repo }}",
|
||||||
"target_loc": "/src/checkout/udm",
|
"target_loc": "/src/checkout/udm",
|
||||||
"refspec": "{{ $.Values.refspec }}",
|
"refspec": "{{ $.Values.refspec }}",
|
||||||
"version": "refs/changes/*:refs/changes/*"
|
"version": "refs/changes/*:refs/changes/*"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
chart.json: |
|
chart.json: |
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
"chart_name": "udm",
|
"chart_name": "udm",
|
||||||
"project": "udm",
|
"project": "udm",
|
||||||
"repo": "udm",
|
"repo": "udm",
|
||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"build_from_source": true,
|
"build_from_source": true,
|
||||||
"path": "charts",
|
"path": "charts",
|
||||||
"build": {
|
"build": {
|
||||||
"git_repo": "{{ $.Values.git_repo }}",
|
"git_repo": "{{ $.Values.git_repo }}",
|
||||||
"target_loc": "/src/checkout/udm",
|
"target_loc": "/src/checkout/udm",
|
||||||
"refspec": "{{ $.Values.refspec }}",
|
"refspec": "{{ $.Values.refspec }}",
|
||||||
"version": "refs/changes/*:refs/changes/*"
|
"version": "refs/changes/*:refs/changes/*"
|
||||||
},
|
},
|
||||||
"namespace": "{{ $.Values.namespace }}",
|
"namespace": "{{ $.Values.namespace }}",
|
||||||
"release_name": "udm",
|
"release_name": "udm",
|
||||||
"images": {
|
"images": {
|
||||||
"applications": {
|
"applications": {
|
||||||
"udm": {
|
"udm": {
|
||||||
"tag": "1.0",
|
"tag": "1.0",
|
||||||
"name": "udm",
|
"name": "udm",
|
||||||
"repo": "udm"
|
"repo": "udm"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
default.json: |
|
default.json: |
|
||||||
{
|
{
|
||||||
"proxy": {
|
"proxy": {
|
||||||
"http": "",
|
"http": "",
|
||||||
"https": "",
|
"https": "",
|
||||||
"noproxy": "",
|
"noproxy": "",
|
||||||
"enabled": false
|
"enabled": false
|
||||||
},
|
},
|
||||||
"docker_content_trust": {
|
"docker_content_trust": {
|
||||||
"DOCKER_CONTENT_TRUST": 1,
|
"DOCKER_CONTENT_TRUST": 1,
|
||||||
"DOCKER_CONTENT_TRUST_SERVER": "https://harbor-notary.jarvis.local",
|
"DOCKER_CONTENT_TRUST_SERVER": "https://harbor-notary.jarvis.local",
|
||||||
"DOCKER_CONTENT_TRUST_ROOT_PASSPHRASE": "passphrase",
|
"DOCKER_CONTENT_TRUST_ROOT_PASSPHRASE": "passphrase",
|
||||||
"DOCKER_CONTENT_TRUST_REPOSITORY_PASSPHRASE": "passphrase"
|
"DOCKER_CONTENT_TRUST_REPOSITORY_PASSPHRASE": "passphrase"
|
||||||
},
|
},
|
||||||
"chart_registry_url": "harbor-core.jarvis.local/chartrepo",
|
"chart_registry_url": "harbor-core.jarvis.local/chartrepo",
|
||||||
"chart_repository": "jarvis-harbor",
|
"chart_repository": "jarvis-harbor",
|
||||||
"docker_registry": "harbor-core.jarvis.local",
|
"docker_registry": "harbor-core.jarvis.local",
|
||||||
"harbor_secret_mounted_path": "/workspace/helm-creds",
|
"harbor_secret_mounted_path": "/workspace/helm-creds",
|
||||||
"clone_async_batch_size": 20,
|
"clone_async_batch_size": 20,
|
||||||
"chart_async_batch_size": 20,
|
"chart_async_batch_size": 20,
|
||||||
"image_async_batch_size": 2
|
"image_async_batch_size": 2
|
||||||
}
|
}
|
||||||
cleanup.json: |
|
cleanup.json: |
|
||||||
{
|
{
|
||||||
"remove_artifacts": "true"
|
"remove_artifacts": "true"
|
||||||
}
|
}
|
||||||
|
@ -1,80 +1,80 @@
|
|||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: ConfigMap
|
kind: ConfigMap
|
||||||
metadata:
|
metadata:
|
||||||
name: deployment-flow
|
name: deployment-flow
|
||||||
data:
|
data:
|
||||||
cluster.json: |
|
cluster.json: |
|
||||||
{
|
{
|
||||||
"namespace": "{{ $.Values.namespace }}",
|
"namespace": "{{ $.Values.namespace }}",
|
||||||
"use_existing_cluster": "true"
|
"use_existing_cluster": "true"
|
||||||
}
|
}
|
||||||
image.json: |
|
image.json: |
|
||||||
{
|
{
|
||||||
"build_from_source": true,
|
"build_from_source": true,
|
||||||
"image_from": "harbor-core.jarvis.local/library/ubuntu:focal",
|
"image_from": "harbor-core.jarvis.local/library/ubuntu:focal",
|
||||||
"image_name": "udr",
|
"image_name": "udr",
|
||||||
"project": "udr",
|
"project": "udr",
|
||||||
"repo": "udr",
|
"repo": "udr",
|
||||||
"tag": "1.built",
|
"tag": "1.built",
|
||||||
"image_fullname": "cnf/udr:1.0",
|
"image_fullname": "cnf/udr:1.0",
|
||||||
"path": "images/udr",
|
"path": "images/udr",
|
||||||
"namespace": "{{ $.Values.namespace }}",
|
"namespace": "{{ $.Values.namespace }}",
|
||||||
"build": {
|
"build": {
|
||||||
"git_repo": "{{ $.Values.git_repo }}",
|
"git_repo": "{{ $.Values.git_repo }}",
|
||||||
"target_loc": "/src/checkout/udr",
|
"target_loc": "/src/checkout/udr",
|
||||||
"refspec": "{{ $.Values.refspec }}",
|
"refspec": "{{ $.Values.refspec }}",
|
||||||
"version": "refs/changes/*:refs/changes/*"
|
"version": "refs/changes/*:refs/changes/*"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
chart.json: |
|
chart.json: |
|
||||||
{
|
{
|
||||||
"chart_name": "udr",
|
"chart_name": "udr",
|
||||||
"project": "udr",
|
"project": "udr",
|
||||||
"repo": "udr",
|
"repo": "udr",
|
||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"build_from_source": true,
|
"build_from_source": true,
|
||||||
"path": "charts",
|
"path": "charts",
|
||||||
"namespace": "{{ $.Values.namespace }}",
|
"namespace": "{{ $.Values.namespace }}",
|
||||||
"build": {
|
"build": {
|
||||||
"git_repo": "{{ $.Values.git_repo }}",
|
"git_repo": "{{ $.Values.git_repo }}",
|
||||||
"target_loc": "/src/checkout/udr",
|
"target_loc": "/src/checkout/udr",
|
||||||
"refspec": "{{ $.Values.refspec }}",
|
"refspec": "{{ $.Values.refspec }}",
|
||||||
"version": "refs/changes/*:refs/changes/*"
|
"version": "refs/changes/*:refs/changes/*"
|
||||||
},
|
},
|
||||||
"release_name": "udr",
|
"release_name": "udr",
|
||||||
"images": {
|
"images": {
|
||||||
"applications": {
|
"applications": {
|
||||||
"udr": {
|
"udr": {
|
||||||
"tag": "1.0",
|
"tag": "1.0",
|
||||||
"name": "udr",
|
"name": "udr",
|
||||||
"repo": "udr"
|
"repo": "udr"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
default.json: |
|
default.json: |
|
||||||
{
|
{
|
||||||
"proxy": {
|
"proxy": {
|
||||||
"http": "",
|
"http": "",
|
||||||
"https": "",
|
"https": "",
|
||||||
"noproxy": "",
|
"noproxy": "",
|
||||||
"enabled": false
|
"enabled": false
|
||||||
},
|
},
|
||||||
"docker_content_trust": {
|
"docker_content_trust": {
|
||||||
"DOCKER_CONTENT_TRUST": 1,
|
"DOCKER_CONTENT_TRUST": 1,
|
||||||
"DOCKER_CONTENT_TRUST_SERVER": "https://harbor-notary.jarvis.local",
|
"DOCKER_CONTENT_TRUST_SERVER": "https://harbor-notary.jarvis.local",
|
||||||
"DOCKER_CONTENT_TRUST_ROOT_PASSPHRASE": "passphrase",
|
"DOCKER_CONTENT_TRUST_ROOT_PASSPHRASE": "passphrase",
|
||||||
"DOCKER_CONTENT_TRUST_REPOSITORY_PASSPHRASE": "passphrase"
|
"DOCKER_CONTENT_TRUST_REPOSITORY_PASSPHRASE": "passphrase"
|
||||||
},
|
},
|
||||||
"chart_registry_url": "harbor-core.jarvis.local/chartrepo",
|
"chart_registry_url": "harbor-core.jarvis.local/chartrepo",
|
||||||
"chart_repository": "jarvis-harbor",
|
"chart_repository": "jarvis-harbor",
|
||||||
"docker_registry": "harbor-core.jarvis.local",
|
"docker_registry": "harbor-core.jarvis.local",
|
||||||
"harbor_secret_mounted_path": "/workspace/helm-creds",
|
"harbor_secret_mounted_path": "/workspace/helm-creds",
|
||||||
"clone_async_batch_size": 20,
|
"clone_async_batch_size": 20,
|
||||||
"chart_async_batch_size": 20,
|
"chart_async_batch_size": 20,
|
||||||
"image_async_batch_size": 2
|
"image_async_batch_size": 2
|
||||||
}
|
}
|
||||||
cleanup.json: |
|
cleanup.json: |
|
||||||
{
|
{
|
||||||
"remove_artifacts": "true"
|
"remove_artifacts": "true"
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user