diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..b512c09 --- /dev/null +++ b/.dockerignore @@ -0,0 +1 @@ +node_modules \ No newline at end of file diff --git a/.gitignore b/.gitignore index 6971b22..e38e031 100644 --- a/.gitignore +++ b/.gitignore @@ -26,4 +26,8 @@ bin/ EventLogs/ obj/ *.sln -restore.dg \ No newline at end of file +restore.dg + +# Node.JS code +node_modules +package-lock.json \ No newline at end of file diff --git a/CatalogSrvc/src/main/resources/application.properties b/CatalogSrvc/src/main/resources/application.properties index d495cbd..ae539fa 100644 --- a/CatalogSrvc/src/main/resources/application.properties +++ b/CatalogSrvc/src/main/resources/application.properties @@ -1,11 +1,11 @@ #Server and management port config -server.port=50001 +server.port=${expose_port} #management.port: 8081 spring.application.name=catalog-catalogservice # Default MongoDB configuration parameters #spring.data.mongodb.repositories.enabled=true -spring.data.mongodb.uri=mongodb://localhost:27017/ordering +spring.data.mongodb.uri=${mongo_conn} #Control if spring banner should be displayed spring.main.banner-mode=off diff --git a/DealerService/Controllers/DealerController.cs b/DealerService/Controllers/DealerController.cs index cba6b91..e429bfe 100644 --- a/DealerService/Controllers/DealerController.cs +++ b/DealerService/Controllers/DealerController.cs @@ -20,10 +20,10 @@ namespace DealerApi.Controllers _log = log; log.LogInformation("--------------------------------------------------"); log.LogInformation("---debug----Creating instance Dealer"); - log.LogInformation(Environment.GetEnvironmentVariable("mongo_connection")); + log.LogInformation(Environment.GetEnvironmentVariable("mongo_conn")); log.LogInformation(Environment.GetEnvironmentVariable("mongo_database")); log.LogInformation("--------------------------------------------------"); - objds = new MongoDealersRepository(Environment.GetEnvironmentVariable("mongo_connection")); + objds = new MongoDealersRepository(Environment.GetEnvironmentVariable("mongo_conn")); } /// diff --git a/OrderSrvc/src/main/resources/application.properties b/OrderSrvc/src/main/resources/application.properties index 6013f9c..8005a6c 100644 --- a/OrderSrvc/src/main/resources/application.properties +++ b/OrderSrvc/src/main/resources/application.properties @@ -1,10 +1,10 @@ #Server and management port config -server.port:50003 +server.port:${expose_port} #management.port: 8081 spring.application.name=order-orderservice # Default MongoDB configuration parameters -spring.data.mongodb.uri=mongodb://localhost:27017/ordering +spring.data.mongodb.uri=${mongo_conn} #Control if spring banner should be displayed spring.main.banner-mode=off @@ -12,7 +12,7 @@ spring.main.banner-mode=off #exposing SBA to prometheus management.security.enabled=false -#zinpin configurations +#zipkin configurations zipkin.mrpservice.uri=http://zipkin-zipkin:9411/api/v1/spans #Hystrix command properties diff --git a/QuoteSrvc/src/main/resources/application.properties b/QuoteSrvc/src/main/resources/application.properties index 0dfd955..4a82c95 100644 --- a/QuoteSrvc/src/main/resources/application.properties +++ b/QuoteSrvc/src/main/resources/application.properties @@ -1,10 +1,9 @@ #Server and management port config -server.port=50002 +server.port=${expose_port} spring.application.name=quote-quoteservice # Default MongoDB configuration parameters -spring.data.mongodb.uri=mongodb://localhost:27017/ordering - +spring.data.mongodb.uri=${mongo_conn} #Control if spring banner should be displayed spring.main.banner-mode=off diff --git a/RestAPIGateway/src/main/resources/application.properties b/RestAPIGateway/src/main/resources/application.properties index fa4e2de..05a5397 100644 --- a/RestAPIGateway/src/main/resources/application.properties +++ b/RestAPIGateway/src/main/resources/application.properties @@ -19,4 +19,4 @@ zuul.routes.shipment-service.path=/api/shipments/** zuul.routes.shipment-service.url=http://shipment-shipmentservice/api/shipments/ ribbon.eureka.enabled=false -server.port=9020 +server.port=${expose_port} diff --git a/ShipmentSrvc/src/main/resources/application.properties b/ShipmentSrvc/src/main/resources/application.properties index 4aba516..8130bad 100644 --- a/ShipmentSrvc/src/main/resources/application.properties +++ b/ShipmentSrvc/src/main/resources/application.properties @@ -1,11 +1,11 @@ #Server and management port config -server.port=50004 +server.port=${expose_port} #management.port: 8081 spring.application.name=shipment-shipmentservice # Default MongoDB configuration parameters #spring.data.mongodb.repositories.enabled=true -spring.data.mongodb.uri=mongodb://localhost:27017/ordering +spring.data.mongodb.uri=${mongo_conn} #Control if spring banner should be displayed spring.main.banner-mode=off diff --git a/Web/src/main/resources/application.properties b/Web/src/main/resources/application.properties index 3aa6ab9..4e57ba5 100644 --- a/Web/src/main/resources/application.properties +++ b/Web/src/main/resources/application.properties @@ -1,4 +1,4 @@ -server.port=8080 +server.port=${expose_port} spring.application.name=mrp_client @@ -20,11 +20,11 @@ logging.file=${catalina.home}/logs/mrp_client.log #logging.file=/logs/mrp_client.log #Micro-Services Endpoint details -service.catalog.uri=http://api-partsunlimitedmrp:9020/api/catalog -service.quote.uri=http://api-partsunlimitedmrp:9020/api/quotes -service.order.uri=http://api-partsunlimitedmrp:9020/api/orders -service.dealer.uri=http://api-partsunlimitedmrp:9020/api/dealers -service.shipment.uri=http://api-partsunlimitedmrp:9020/api/shipments +service.catalog.uri=http://pumrp-catalog-svc/api/catalog +service.quote.uri=http://pumrp-quote-svc/api/quotes +service.order.uri=http://pumrp-order-svc/api/orders +service.dealer.uri=http://pumrp-dealer-svc/api/Dealer +service.shipment.uri=http://pumrp-shipment-svc/api/shipments #Hystrix command properties diff --git a/deploy/README.md b/deploy/README.md index 627759e..a76fb94 100644 --- a/deploy/README.md +++ b/deploy/README.md @@ -10,27 +10,54 @@ If you want to learn on how you can automate the deployment using DevOps practic ```bash # Variables -export READY_RG=readywinter18 -export READY_LOCATION=eastus -export READY_PATH=~/temp/ready +export READY_RG=pumrpmicro +export READY_LOCATION=eastus2 +export READY_PATH=~/temp/pumrpmicro # Folder rm -rf $READY_PATH -mkdir $READY_PATH -cd $READY_PATH +mkdir -p $READY_PATH + +# Clone the code locally +git clone git@github.com:Microsoft/PartsUnlimitedMRPmicro.git +cd PartsUnlimitedMRPmicro # SSH Keys -ssh-keygen -f readywint18 -t rsa -N '' +ssh-keygen -f $READY_PATH/pumrpmicro -t rsa -N '' # Resource Group on Azure az group create -n $READY_RG -l $READY_LOCATION ``` -### AKS - K8s Cluster +### ACR & AKS ```bash -# Create the AKS cluster using your AZURE_CLIENT_SECRET and AZURE_CLIENT_ID variables (You should set it before to run this script) -az aks create -g $READY_RG -n $READY_RG --ssh-key-value $READY_PATH/readywint18.pub --node-count 3 --client-secret $AZURE_CLIENT_SECRET --service-principal $AZURE_CLIENT_ID -l $READY_LOCATION +az acr create -n ${READY_RG}acr -g $READY_RG --sku Basic --admin-enabled -l $READY_LOCATION + +az acr login -n ${READY_RG}acr -g $READY_RG + +echo "Creating ServicePrincipal for AKS Cluster.." +export SP_JSON=`az ad sp create-for-rbac --role="Contributor"` +export SP_NAME=`echo $SP_JSON | jq -r '.name'` +export SP_PASS=`echo $SP_JSON | jq -r '.password'` +export SP_ID=`echo $SP_JSON | jq -r '.appId'` +echo "Service Principal Name: " $SP_NAME +echo "Service Principal Password: " $SP_PASS +echo "Service Principal Id: " $SP_ID + +echo "Retrieving Registry ID..." + +ACR_ID="$(az acr show -n ${READY_RG}acr -g $READY_RG --query "id" --output tsv)" + +echo "Registry Id:"$ACR_ID + +echo "Granting Service Princpal " $SP_NAME " access to ACR..." +( + set -x + az role assignment create --assignee $SP_ID --role Reader --scope $ACR_ID +) + +az aks create -g $READY_RG -n $READY_RG --ssh-key-value $READY_PATH/pumrpmicro.pub --node-count 3 -k 1.11.5 --client-secret $SP_PASS --service-principal $SP_ID -l $READY_LOCATION az aks get-credentials -g $READY_RG -n $READY_RG @@ -42,191 +69,168 @@ az aks get-credentials -g $READY_RG -n $READY_RG ### MongoDB Backend using CosmosDB ```bash -az cosmosdb create -n ${READY_RG}db -g $READY_RG --kind MongoDB +READY_COSMOSDB_NAME=${READY_RG}db +az cosmosdb create -n $READY_COSMOSDB_NAME -g $READY_RG --kind MongoDB -READY_COSMOSDB_TEMP=$(az cosmosdb list-connection-strings -n ${READY_RG}db -g ${READY_RG} -o tsv --query 'connectionStrings[0].[connectionString]') - -READY_COSMOSDB=$(echo ${READY_COSMOSDB_TEMP/?ssl=true/pumrp?ssl=true}) +READY_COSMOSDB_PASS=$(az cosmosdb list-keys -n $READY_COSMOSDB_NAME -g ${READY_RG} -o tsv --query 'primaryMasterKey') +READY_COSMOSDB="mongodb://${READY_COSMOSDB_NAME}:${READY_COSMOSDB_PASS}@${READY_COSMOSDB_NAME}.documents.azure.com:10255/${READY_COSMOSDB_NAME}?ssl=true&replicaSet=globaldb" ``` -Edit `load_mock_data.js` with your DB information and run it to load your database with mock data: -``` -$ node load_mock_data.js -(node:82192) DeprecationWarning: current URL string parser is deprecated, and will be removed in a future version. To use the new parser, pass option { useNewUrlParser: true } to MongoClient.connect. +Install the node.js mongodb npm package. +`npm install mongodb` + +Execute `load_mock_data.js` with your DB information and run it to load your database with mock data: + +```shell +$ node ./deploy/load_mock_data.js $READY_COSMOSDB_NAME $READY_COSMOSDB_PASS Connected successfully to server +Records Imported ``` -### ACR - Private Registry - -az acr create -n ${READY_RG}acr -g $READY_RG --sku Basic --admin-enabled -l $READY_LOCATION - -az acr login -n ${READY_RG}acr -g $READY_RG - ### Prerequisites in the K8s cluster ```bash # Add the secrets to be authenticated in the cluster -kubectl create secret docker-registry puregistrykey --docker-server=https://${READY_RG}acr.azurecr.io --docker-username=${READY_RG}acr --docker-password=$READY_ACR_PASSWORD --docker-email=$READY_RG@contoso.com - -# Install / Upgrade Helm -helm init --upgrade - -# Store the ACR Password locally READY_ACR_PASSWORD=$(az acr credential show -n ${READY_RG}acr -g ${READY_RG} -o tsv --query 'passwords[0].value') -# Clone the code locally -git clone git@github.com:Microsoft/PartsUnlimitedMRPmicro.git +kubectl create secret docker-registry puregistrykey --docker-server=https://${READY_RG}acr.azurecr.io --docker-username=${READY_RG}acr --docker-password=$READY_ACR_PASSWORD --docker-email=$READY_RG@contoso.com -cd PartsUnlimitedMRPmicro +# Add the kubernetes CosmosDB secret for APIs to connect +kubectl create secret generic cosmosdb --from-literal=connection=$READY_COSMOSDB --from-literal=database=${READY_COSMOSDB_NAME} + +# Install / Upgrade Helm +kubectl create serviceaccount --namespace kube-system tillersa +kubectl create clusterrolebinding tiller-cluster-rule --clusterrole=cluster-admin --serviceaccount=kube-system:tillersa +helm init --upgrade --service-account tillersa ``` ## Application -### Prometheus and Grafana - -```bash -cd $READY_PATH - -cd PartsUnlimitedMRPmicro - -helm install ./deploy/helm/individual/prometheus --name=prometheus - -helm install --name grafana stable/grafana --set server.service.type=LoadBalancer -``` - -### Cassandra - -```bash -cd $READY_PATH - -cd PartsUnlimitedMRPmicro - -helm install ./deploy/helm/cassandra --name=cassandradbs -``` - -### Zipkin - -```bash -cd $READY_PATH - -cd PartsUnlimitedMRPmicro - -docker run --rm -v $PWD/ZipkinServer:/project -w /project --name gradle gradle:3.4.1-jdk8-alpine gradle build - -docker build -f ./ZipkinServer/Dockerfile --build-arg port=9411 -t ${READY_RG}acr.azurecr.io/zipkin:v1.0 . - -docker push ${READY_RG}acr.azurecr.io/zipkin:v1.0 - -helm install ./deploy/helm/individual/zipkinserver --name=zipkin --set image.tag=v1.0,image.repository=${READY_RG}acr.azurecr.io/zipkin -``` - -### API Gateway - -```bash -cd $READY_PATH - -cd PartsUnlimitedMRPmicro - -docker run --rm -v $PWD/RestAPIGateway:/project -w /project --name gradle gradle:3.4.1-jdk8-alpine gradle build -x test - -docker build -f ./RestAPIGateway/Dockerfile --build-arg port=9020 -t ${READY_RG}acr.azurecr.io/apigateway:v1.0 . - -docker push ${READY_RG}acr.azurecr.io/apigateway:v1.0 - -helm install ./deploy/helm/individual/apigateway --name=api --set image.tag=v1.0,image.repository=${READY_RG}acr.azurecr.io/apigateway -``` +These are the required steps to get the application and all microservices running. ### FrontEnd - Client +To simply deploy the latest tagged image from Docker hub: + ```bash -cd $READY_PATH +helm install ./deploy/helm/pumrpmicro --name=web --set service.type=LoadBalancer,image.name=pumrp-web,image.repository=microsoft +``` -cd PartsUnlimitedMRPmicro +**OR** +To build the image, push to ACR, and deploy the image from ACR: +```bash docker run --rm -v $PWD/Web:/project -w /project --name gradle gradle:3.4.1-jdk8-alpine gradle build -docker build -f ./Web/Dockerfile --build-arg port=8080 -t ${READY_RG}acr.azurecr.io/puclient:v1.0 . +docker build -f ./Web/Dockerfile --build-arg port=8080 -t ${READY_RG}acr.azurecr.io/pumrp/pumrp-web:v1.0 . -docker push ${READY_RG}acr.azurecr.io/puclient:v1.0 +docker push ${READY_RG}acr.azurecr.io/pumrp/pumrp-web:v1.0 -helm install ./deploy/helm/individual/partsunlimitedmrp --name=client --set image.tag=v1.0,image.repository=${READY_RG}acr.azurecr.io/puclient +helm install ./deploy/helm/pumrpmicro --name=client --set labels.tier=frontend,service.type=LoadBalancer,image.name=pumrp-web,image.tag=v1.0,image.repository=${READY_RG}acr.azurecr.io/pumrp ``` +> Note: The client is served on the `/mrp_client/` path. + ### Backend - Order Service +To simply deploy the latest tagged image from Docker hub: + ```bash -cd $READY_PATH +helm install ./deploy/helm/pumrpmicro --name=order --set image.name=pumrp-order,image.repository=microsoft +``` -cd PartsUnlimitedMRPmicro +**OR** +To build the image, push to ACR, and deploy the image from ACR: +```bash docker run --rm -v $PWD/OrderSrvc:/project -w /project --name gradle gradle:3.4.1-jdk8-alpine gradle build -docker build -f ./OrderSrvc/Dockerfile --build-arg port=8080 --build-arg mongo_connection=$READY_COSMOSDB -t ${READY_RG}acr.azurecr.io/puorder:v1.0 . +docker build -f ./OrderSrvc/Dockerfile --build-arg port=8080 --build-arg mongo_connection=$READY_COSMOSDB -t ${READY_RG}acr.azurecr.io/pumrp/pumrp-order:v1.0 . -docker push ${READY_RG}acr.azurecr.io/puorder:v1.0 +docker push ${READY_RG}acr.azurecr.io/pumrp/pumrp-order:v1.0 -helm install ./deploy/helm/individual/orderservice --name=order --set image.tag=v1.0,image.repository=${READY_RG}acr.azurecr.io/puorder +helm install ./deploy/helm/pumrpmicro --name=order --set image.name=pumrp-order,image.tag=v1.0,image.repository=${READY_RG}acr.azurecr.io/pumrp ``` ### Backend - Catalog Service +To simply deploy the latest tagged image from Docker hub: + ```bash -cd $READY_PATH +helm install ./deploy/helm/pumrpmicro --name=catalog --set image.name=pumrp-catalog,image.repository=microsoft +``` -cd PartsUnlimitedMRPmicro +**OR** +To build the image, push to ACR, and deploy the image from ACR: +```bash docker run --rm -v $PWD/CatalogSrvc:/project -w /project --name gradle gradle:3.4.1-jdk8-alpine gradle build -docker build -f ./CatalogSrvc/Dockerfile --build-arg port=8080 --build-arg mongo_connection=$READY_COSMOSDB -t ${READY_RG}acr.azurecr.io/pucatalog:v1.0 . +docker build -f ./CatalogSrvc/Dockerfile --build-arg port=8080 --build-arg mongo_connection=$READY_COSMOSDB -t ${READY_RG}acr.azurecr.io/pumrp/pumrp-catalog:v1.0 . -docker push ${READY_RG}acr.azurecr.io/pucatalog:v1.0 +docker push ${READY_RG}acr.azurecr.io/pumrp/pumrp-catalog:v1.0 -helm install ./deploy/helm/individual/catalogservice --name=catalog --set image.tag=v1.0,image.repository=${READY_RG}acr.azurecr.io/pucatalog +helm install ./deploy/helm/pumrpmicro --name=catalog --set image.name=pumrp-catalog,image.tag=v1.0,image.repository=${READY_RG}acr.azurecr.io/pumrp ``` ### Backend - Shipment Service +To simply deploy the latest tagged image from Docker hub: + ```bash -cd $READY_PATH +helm install ./deploy/helm/pumrpmicro --name=shipment --set image.name=pumrp-shipment,image.repository=microsoft +``` -cd PartsUnlimitedMRPmicro +**OR** +To build the image, push to ACR, and deploy the image from ACR: +```bash docker run --rm -v $PWD/ShipmentSrvc:/project -w /project --name gradle gradle:3.4.1-jdk8-alpine gradle build -docker build -f ./ShipmentSrvc/Dockerfile --build-arg port=8080 --build-arg mongo_connection=$READY_COSMOSDB -t ${READY_RG}acr.azurecr.io/pushipment:v1.0 . +docker build -f ./ShipmentSrvc/Dockerfile --build-arg port=8080 --build-arg mongo_connection=$READY_COSMOSDB -t ${READY_RG}acr.azurecr.io/pumrp/pumrp-shipment:v1.0 . -docker push ${READY_RG}acr.azurecr.io/pushipment:v1.0 +docker push ${READY_RG}acr.azurecr.io/pumrp/pumrp-shipment:v1.0 -helm install ./deploy/helm/individual/shipmentservice --name=shipment --set image.tag=v1.0,image.repository=${READY_RG}acr.azurecr.io/pushipment +helm install ./deploy/helm/pumrpmicro --name=shipment --set image.name=pumrp-shipment,image.tag=v1.0,image.repository=${READY_RG}acr.azurecr.io/pumrp ``` ### Backend - Quote Service +To simply deploy the latest tagged image from Docker hub: + ```bash -cd $READY_PATH +helm install ./deploy/helm/pumrpmicro --name=quote --set image.name=pumrp-quote,image.repository=microsoft +``` -cd PartsUnlimitedMRPmicro +**OR** +To build the image, push to ACR, and deploy the image from ACR: +```bash docker run --rm -v $PWD/QuoteSrvc:/project -w /project --name gradle gradle:3.4.1-jdk8-alpine gradle build -docker build -f ./QuoteSrvc/Dockerfile --build-arg port=8080 --build-arg mongo_connection=$READY_COSMOSDB -t ${READY_RG}acr.azurecr.io/puquote:v1.0 . +docker build -f ./QuoteSrvc/Dockerfile --build-arg port=8080 --build-arg mongo_connection=$READY_COSMOSDB -t ${READY_RG}acr.azurecr.io/pumrp/pumrp-quote:v1.0 . -docker push ${READY_RG}acr.azurecr.io/puquote:v1.0 +docker push ${READY_RG}acr.azurecr.io/pumrp/pumrp-quote:v1.0 -helm install ./deploy/helm/individual/quoteservice --name=quote --set image.tag=v1.0,image.repository=${READY_RG}acr.azurecr.io/puquote +helm install ./deploy/helm/pumrpmicro --name=quote --set image.name=pumrp-quote,image.tag=v1.0,image.repository=${READY_RG}acr.azurecr.io/pumrp ``` ### Backend - Dealer Service +To simply deploy the latest tagged image from Docker hub: + ```bash -cd $READY_PATH - -cd PartsUnlimitedMRPmicro - -docker build --build-arg mongo_connection=$READY_COSMOSDB --build-arg mongo_database=purmp -f DealerService/Dockerfile -t ${READY_RG}acr.azurecr.io/pudealer:v1.0 . - -docker push ${READY_RG}acr.azurecr.io/pudealer:v1.0 - -helm install ./deploy/helm/individual/dealerservice --name=dealer --set image.tag=v1.0,image.repository=${READY_RG}acr.azurecr.io/pudealer +helm install ./deploy/helm/pumrpmicro --name=quote --set image.name=pumrp-dealer,image.repository=microsoft +``` + +**OR** +To build the image, push to ACR, and deploy the image from ACR: + +```bash +docker build --build-arg mongo_connection=$READY_COSMOSDB -f DealerService/Dockerfile -t ${READY_RG}acr.azurecr.io/pumrp/pumrp-dealer:v1.0 . + +docker push ${READY_RG}acr.azurecr.io/pumrp/pumrp-dealer:v1.0 + +helm install ./deploy/helm/pumrpmicro --name=dealer --set image.name=pumrp-dealer,image.tag=v1.0,image.repository=${READY_RG}acr.azurecr.io/pumrp ``` diff --git a/deploy/db/records.js b/deploy/db/records.js deleted file mode 100644 index e0eb924..0000000 --- a/deploy/db/records.js +++ /dev/null @@ -1,117 +0,0 @@ -//db = conn.getDB("ordering"); -db.catalog.insert( -[ - {"skuNumber" : "LIG-0001", "description" : "Helogen Headlights (2 Pack)", "price" : 38.99, "inventory" : 10, "leadTime" : 3}, - {"skuNumber" : "LIG-0002", "description" : "Bugeye Headlights (2 Pack)", "price" : 48.99, "inventory" : 7, "leadTime" : 3}, - {"skuNumber" : "LIG-0003", "description" : "Turn Signal Light Bulb", "price" : 6.49, "inventory" : 18, "leadTime" : 3}, - {"skuNumber" : "WHE-0001", "description" : "Matte Finish Rim", "price" : 75.99, "inventory" : 4, "leadTime" : 5}, - {"skuNumber" : "WHE-0002", "description" : "Blue Performance Alloy Rim", "price" : 88.99, "inventory" : 8, "leadTime" : 5}, - {"skuNumber" : "WHE-0003", "description" : "High Performance Rim", "price" : 99.99, "inventory" : 3, "leadTime" : 5}, - {"skuNumber" : "WHE-0004", "description" : "Wheel Tire Combo", "price" : 72.49, "inventory" : 0, "leadTime" : 4}, - {"skuNumber" : "WHE-0005", "description" : "Chrome Rim Tire Combo", "price" : 129.99, "inventory" : 1, "leadTime" : 4}, - {"skuNumber" : "WHE-0006", "description" : "Wheel Tire Combo (4 Pack)", "price" : 219.99, "inventory" : 3, "leadTime" : 6}, - {"skuNumber" : "BRA-0001", "description" : "Disk and Pad Combo", "price" : 25.99, "inventory" : 0, "leadTime" : 6}, - {"skuNumber" : "BRA-0002", "description" : "Brake Rotor", "price" : 18.99, "inventory" : 4, "leadTime" : 4}, - {"skuNumber" : "BRA-0003", "description" : "Brake Disk and Calipers", "price" : 43.99, "inventory" : 2, "leadTime" : 8}, - {"skuNumber" : "BAT-0001", "description" : "12-Volt Calcium Battery", "price" : 129.99, "inventory" : 9, "leadTime" : 8}, - {"skuNumber" : "BAT-0002", "description" : "Spiral Coil Battery", "price" : 154.99, "inventory" : 3, "leadTime" : 10}, - {"skuNumber" : "BAT-0003", "description" : "Jumper Leads", "price" : 16.99, "inventory" : 6, "leadTime" : 3}, - {"skuNumber" : "OIL-0001", "description" : "Filter Set", "price" : 28.99, "inventory" : 3, "leadTime" : 4}, - {"skuNumber" : "OIL-0002", "description" : "Oil and Filter Combo", "price" : 34.49, "inventory" : 5, "leadTime" : 4}, - {"skuNumber" : "OIL-0003", "description" : "Synthetic Engine Oil", "price" : 39.99, "inventory" : 11, "leadTime" : 4} -]) - -db.dealers.insert({ "name" : "Terry Adams", "address" : "17760 Northeast 67th Court, Redmond, WA 98052", "email" : "terry@adams.com", "phone" : "425-885-6217" }) - -db.quotes.insert([{ -"quoteId" : "0", -"validUntil" : "2015-05-01T00:00:00+0000", -"customerName" : "Walter Harp", -"dealerName" : "Terry Adams", -"city" : "Seattle", -"totalCost" : "51.97", -"discount" : "0.0", -"state" : "WA", -"postalCode" : "98023", -"quoteItems" : [ - {"skuNumber":"LIG-0001", "amount":1 }, - {"skuNumber":"LIG-0003", "amount":2 }] -}, -{ -"quoteId" : "1", -"validUntil" : "2015-01-01T00:00:00+0000", -"customerName" : "Jerry Morrison", -"dealerName" : "Terry Adams", -"city" : "Seattle", -"totalCost" : "25.99", -"state" : "WA", -"postalCode" : "98089", -"quoteItems" : [ - { "skuNumber" : "BRA-0001", "amount" : 1} -] -}, -{ -"quoteId" : "2", -"validUntil" : "2015-02-01T00:00:00+0000", -"customerName" : "Harrison Hall", -"dealerName" : "Terry Adams", -"city" : "Seattle", -"totalCost" : "600.90", -"discount" : "0.0", -"state" : "WA", -"postalCode" : "98027", -"quoteItems" : [ - { "skuNumber" : "WHE-0002", "amount" : 4}, - { "skuNumber" : "BRA-0003", "amount" : 4}, - { "skuNumber" : "OIL-0001", "amount" : 1}, - { "skuNumber" : "OIL-0001", "amount" : 1} -] -} -]) - -db.orders.insert([{ -"orderId" : "0", -"quoteId" : "0", -"orderDate" : "2015-03-02T20:43:37+0000", -"status" : "Created", -"events" : [] -}, -{"orderId" : "1", -"quoteId" : "2", -"orderDate" : "2015-03-02T20:43:37+0000", -"status" : "DeliveryConfirmed", -"events" : [] -}]) - -db.shipments.insert([{ -"orderId" : "0", -"contactName" : "Walter Harp", -"primaryContactPhone" : { - "phoneNumber" : "435-783-2378", - "kind" : "Mobile" -}, -"deliveryAddress" : { - "street" : "34 Sheridan Street", - "city" : "Seattle", - "state" : "WA", - "postalCode" : "98023", - "specialInstructions" : "" -}, -"events" : [] -}, -{ -"orderId" : "2", -"contactName" : "Harrison Hall", -"primaryContactPhone" : { - "phoneNumber" : "435-712-7234", - "kind" : "Mobile" -}, -"deliveryAddress" : { - "street" : "84 Queen Street", - "city" : "Seattle", - "state" : "WA", - "postalCode" : "98027", - "specialInstructions" : "Leave around by the back door." -}, -"events" : [] -}]) \ No newline at end of file diff --git a/deploy/docker/Catalog/DockerCompose.yml b/deploy/docker/Catalog/DockerCompose.yml deleted file mode 100644 index 449c234..0000000 --- a/deploy/docker/Catalog/DockerCompose.yml +++ /dev/null @@ -1,8 +0,0 @@ -version: "2" - -services: - pucatalog: - build: . - image: puregistry-on.azurecr.io/pucatalog - ports: - - "8080" \ No newline at end of file diff --git a/deploy/docker/Client/DockerCompose.yml b/deploy/docker/Client/DockerCompose.yml deleted file mode 100644 index 8545e84..0000000 --- a/deploy/docker/Client/DockerCompose.yml +++ /dev/null @@ -1,8 +0,0 @@ -version: "2" - -services: - puclient: - build: . - image: puregistry-on.azurecr.io/puclient:latest - ports: - - "80" \ No newline at end of file diff --git a/deploy/docker/Client/Kubernetes.Deploy.yaml b/deploy/docker/Client/Kubernetes.Deploy.yaml deleted file mode 100644 index 5ebfe8f..0000000 --- a/deploy/docker/Client/Kubernetes.Deploy.yaml +++ /dev/null @@ -1,41 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: pumrpclientservice - labels: - version: PartsUnlimitedMrp -spec: - selector: - app: PartsUnlimitedMrp - tier: FrontendService - link: PartsUnlimitedMrp - type: LoadBalancer - sessionAffinity: None - ports: - - port: 80 - targetPort: http - protocol: TCP ---- -apiVersion: extensions/v1beta1 -kind: Deployment -metadata: - name: pumrpclientdeployment -spec: - replicas: 1 - strategy: - type: RollingUpdate - template: - metadata: - labels: - app: PartsUnlimitedMrp - tier: FrontendDeployment - link: PartsUnlimitedMrp - spec: - containers: - - name: partsunlimitedmrp - image: puregistry-on.azurecr.io/puclient:latest - ports: - - name: http - containerPort: 8080 - imagePullSecrets: - - name: puregistrykey \ No newline at end of file diff --git a/deploy/docker/Dealer/DockerCompose.yml b/deploy/docker/Dealer/DockerCompose.yml deleted file mode 100644 index 0781ec0..0000000 --- a/deploy/docker/Dealer/DockerCompose.yml +++ /dev/null @@ -1,8 +0,0 @@ -version: "2" - -services: - pudealer: - build: . - image: puregistry-on.azurecr.io/pudealer:latest - ports: - - "8080" \ No newline at end of file diff --git a/deploy/docker/Order/DockerCompose.yml b/deploy/docker/Order/DockerCompose.yml deleted file mode 100644 index 82fb29e..0000000 --- a/deploy/docker/Order/DockerCompose.yml +++ /dev/null @@ -1,8 +0,0 @@ -version: "2" - -services: - puorder: - build: . - image: puregistry-on.azurecr.io/puorder:latest - ports: - - "8080" \ No newline at end of file diff --git a/deploy/docker/Order/Kubernetes.Deploy.yaml b/deploy/docker/Order/Kubernetes.Deploy.yaml deleted file mode 100644 index 9c8da4c..0000000 --- a/deploy/docker/Order/Kubernetes.Deploy.yaml +++ /dev/null @@ -1,41 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: pumrporderservice - labels: - version: PartsUnlimitedMrp -spec: - selector: - app: PartsUnlimitedMrp - tier: OrderService - link: PartsUnlimitedMrp - type: ClusterIP - sessionAffinity: None - ports: - - port: 8080 - targetPort: http - protocol: TCP ---- -apiVersion: extensions/v1beta1 -kind: Deployment -metadata: - name: pumrporderdeployment -spec: - replicas: 1 - strategy: - type: RollingUpdate - template: - metadata: - labels: - app: PartsUnlimitedMrp - tier: OrderDeployment - link: PartsUnlimitedMrp - spec: - containers: - - name: partsunlimitedmrp - image: puregistry-on.azurecr.io/puorder:latest - ports: - - name: http - containerPort: 8080 - imagePullSecrets: - - name: puregistrykey diff --git a/deploy/docker/Order/orderservicemsa-0.9.1.jar b/deploy/docker/Order/orderservicemsa-0.9.1.jar deleted file mode 100644 index d177c0d..0000000 Binary files a/deploy/docker/Order/orderservicemsa-0.9.1.jar and /dev/null differ diff --git a/deploy/docker/Quote/DockerCompose.yml b/deploy/docker/Quote/DockerCompose.yml deleted file mode 100644 index a9635a1..0000000 --- a/deploy/docker/Quote/DockerCompose.yml +++ /dev/null @@ -1,8 +0,0 @@ -version: "2" - -services: - puorder: - build: . - image: puregistry-on.azurecr.io/puquote:latest - ports: - - "8080" \ No newline at end of file diff --git a/deploy/docker/Shipment/DockerCompose.yml b/deploy/docker/Shipment/DockerCompose.yml deleted file mode 100644 index 5e4cbf7..0000000 --- a/deploy/docker/Shipment/DockerCompose.yml +++ /dev/null @@ -1,8 +0,0 @@ -version: "2" - -services: - pushipment: - build: . - image: puregistry-on.azurecr.io/pushipment:latest - ports: - - "8080" \ No newline at end of file diff --git a/deploy/helm/individual/apigateway/.helmignore b/deploy/helm/fluentd/daemonset/.helmignore similarity index 100% rename from deploy/helm/individual/apigateway/.helmignore rename to deploy/helm/fluentd/daemonset/.helmignore diff --git a/deploy/helm/individual/fluentd/daemonset/Chart.yaml b/deploy/helm/fluentd/daemonset/Chart.yaml similarity index 100% rename from deploy/helm/individual/fluentd/daemonset/Chart.yaml rename to deploy/helm/fluentd/daemonset/Chart.yaml diff --git a/deploy/helm/individual/apigateway/templates/NOTES.txt b/deploy/helm/fluentd/daemonset/templates/NOTES.txt similarity index 100% rename from deploy/helm/individual/apigateway/templates/NOTES.txt rename to deploy/helm/fluentd/daemonset/templates/NOTES.txt diff --git a/deploy/helm/individual/apigateway/templates/_helpers.tpl b/deploy/helm/fluentd/daemonset/templates/_helpers.tpl similarity index 100% rename from deploy/helm/individual/apigateway/templates/_helpers.tpl rename to deploy/helm/fluentd/daemonset/templates/_helpers.tpl diff --git a/deploy/helm/individual/fluentd/daemonset/templates/daemonset.yaml b/deploy/helm/fluentd/daemonset/templates/daemonset.yaml similarity index 100% rename from deploy/helm/individual/fluentd/daemonset/templates/daemonset.yaml rename to deploy/helm/fluentd/daemonset/templates/daemonset.yaml diff --git a/deploy/helm/individual/fluentd/daemonset/templates/service.yaml b/deploy/helm/fluentd/daemonset/templates/service.yaml similarity index 100% rename from deploy/helm/individual/fluentd/daemonset/templates/service.yaml rename to deploy/helm/fluentd/daemonset/templates/service.yaml diff --git a/deploy/helm/individual/fluentd/daemonset/values.yaml b/deploy/helm/fluentd/daemonset/values.yaml similarity index 100% rename from deploy/helm/individual/fluentd/daemonset/values.yaml rename to deploy/helm/fluentd/daemonset/values.yaml diff --git a/deploy/helm/individual/catalogservice/.helmignore b/deploy/helm/fluentd/sidecar/.helmignore similarity index 100% rename from deploy/helm/individual/catalogservice/.helmignore rename to deploy/helm/fluentd/sidecar/.helmignore diff --git a/deploy/helm/individual/fluentd/sidecar/Chart.yaml b/deploy/helm/fluentd/sidecar/Chart.yaml similarity index 100% rename from deploy/helm/individual/fluentd/sidecar/Chart.yaml rename to deploy/helm/fluentd/sidecar/Chart.yaml diff --git a/deploy/helm/individual/fluentd/daemonset/templates/NOTES.txt b/deploy/helm/fluentd/sidecar/templates/NOTES.txt similarity index 100% rename from deploy/helm/individual/fluentd/daemonset/templates/NOTES.txt rename to deploy/helm/fluentd/sidecar/templates/NOTES.txt diff --git a/deploy/helm/individual/catalogservice/templates/_helpers.tpl b/deploy/helm/fluentd/sidecar/templates/_helpers.tpl similarity index 100% rename from deploy/helm/individual/catalogservice/templates/_helpers.tpl rename to deploy/helm/fluentd/sidecar/templates/_helpers.tpl diff --git a/deploy/helm/individual/fluentd/sidecar/templates/deployment.yaml b/deploy/helm/fluentd/sidecar/templates/deployment.yaml similarity index 100% rename from deploy/helm/individual/fluentd/sidecar/templates/deployment.yaml rename to deploy/helm/fluentd/sidecar/templates/deployment.yaml diff --git a/deploy/helm/individual/fluentd/sidecar/templates/service.yaml b/deploy/helm/fluentd/sidecar/templates/service.yaml similarity index 100% rename from deploy/helm/individual/fluentd/sidecar/templates/service.yaml rename to deploy/helm/fluentd/sidecar/templates/service.yaml diff --git a/deploy/helm/individual/fluentd/sidecar/values.yaml b/deploy/helm/fluentd/sidecar/values.yaml similarity index 100% rename from deploy/helm/individual/fluentd/sidecar/values.yaml rename to deploy/helm/fluentd/sidecar/values.yaml diff --git a/deploy/helm/individual/apigateway/charts/.helm/repository/cache/stable-index.yaml b/deploy/helm/individual/apigateway/charts/.helm/repository/cache/stable-index.yaml deleted file mode 100644 index 03fafe4..0000000 --- a/deploy/helm/individual/apigateway/charts/.helm/repository/cache/stable-index.yaml +++ /dev/null @@ -1,5793 +0,0 @@ -apiVersion: v1 -entries: - aws-cluster-autoscaler: - - apiVersion: v1 - created: 2017-03-09T19:33:31.126773901Z - description: Scales worker nodes within autoscaling groups. - digest: 291eaabbf54913e71cda39d42a6e9c4c493a3672a5b0b5183ea1991a76d6c317 - engine: gotpl - icon: https://github.com/kubernetes/kubernetes/blob/master/logo/logo.png - maintainers: - - email: mgoodness@gmail.com - name: Michael Goodness - name: aws-cluster-autoscaler - sources: - - https://github.com/kubernetes/contrib/tree/master/cluster-autoscaler/cloudprovider/aws - urls: - - https://kubernetes-charts.storage.googleapis.com/aws-cluster-autoscaler-0.2.1.tgz - version: 0.2.1 - - apiVersion: v1 - created: 2017-03-02T18:48:30.418071154Z - description: Scales worker nodes within autoscaling groups. - digest: 52ee58b51619f641d0f6df4c778bcd068242379a1a040a269f0fc93867b79b13 - engine: gotpl - maintainers: - - email: mgoodness@gmail.com - name: Michael Goodness - name: aws-cluster-autoscaler - sources: - - https://github.com/kubernetes/contrib/tree/master/cluster-autoscaler/cloudprovider/aws - urls: - - https://kubernetes-charts.storage.googleapis.com/aws-cluster-autoscaler-0.2.0.tgz - version: 0.2.0 - chaoskube: - - created: 2017-03-09T19:33:31.127058545Z - description: Chaoskube periodically kills random pods in your Kubernetes cluster. - digest: cc211be37255f2fdf7cc74022f51473c2c4af98c06b0871ab8c9b8341ee9d349 - engine: gotpl - home: https://github.com/linki/chaoskube - maintainers: - - email: linki+kubernetes.io@posteo.de - name: Martin Linkhorst - name: chaoskube - sources: - - https://github.com/linki/chaoskube - urls: - - https://kubernetes-charts.storage.googleapis.com/chaoskube-0.4.0.tgz - version: 0.4.0 - - created: 2017-02-13T04:18:31.525717582Z - description: A Helm chart for chaoskube - digest: 6e6466b2a7294853fbad6a1dc5526e7fd6eb75bafd035748259511ccf49f9c47 - engine: gotpl - home: https://github.com/linki/chaoskube - maintainers: - - email: linki+helm.sh@posteo.de - name: Martin Linkhorst - name: chaoskube - sources: - - https://github.com/linki/chaoskube - urls: - - https://kubernetes-charts.storage.googleapis.com/chaoskube-0.3.1.tgz - version: 0.3.1 - - created: 2017-02-13T21:18:28.251529085Z - description: Chaoskube periodically kills random pods in your Kubernetes cluster. - digest: 6439a906666fc62e7aeb28186ce2f4a730216941163edd799176cc30616e713a - engine: gotpl - home: https://github.com/linki/chaoskube - maintainers: - - email: linki+kubernetes.io@posteo.de - name: Martin Linkhorst - name: chaoskube - sources: - - https://github.com/linki/chaoskube - urls: - - https://kubernetes-charts.storage.googleapis.com/chaoskube-0.3.1-1.tgz - version: 0.3.1-1 - chronograf: - - created: 2017-03-09T19:33:31.127406246Z - description: Open-source web application written in Go and React.js that provides - the tools to visualize your monitoring data and easily create alerting and automation - rules. - digest: 6bc90a815f7fc513bfa2b4d1a56a03e53444bfd08b742e0d0f1ff9f3b5db52f7 - engine: gotpl - home: https://www.influxdata.com/time-series-platform/chronograf/ - keywords: - - chronograf - - visualizaion - - timeseries - maintainers: - - email: jack@influxdb.com - name: Jack Zampolin - name: chronograf - urls: - - https://kubernetes-charts.storage.googleapis.com/chronograf-0.1.2.tgz - version: 0.1.2 - - created: 2017-02-13T04:18:31.52604543Z - description: Chart for Chronograf - digest: 985fa74feb6ed111220ca7a8c5da529accd42def9d75f56c0c82902631bcf15f - engine: gotpl - home: https://www.influxdata.com/time-series-platform/chronograf/ - keywords: - - chronograf - - visualizaion - - timeseries - maintainers: - - email: jack@influxdb.com - name: Jack Zampolin - name: chronograf - urls: - - https://kubernetes-charts.storage.googleapis.com/chronograf-0.1.1.tgz - version: 0.1.1 - - created: 2017-01-28T00:33:31.060189495Z - description: Chart for Chronograf - digest: ea03695da15a018e84d05e0fd97d581f3fd348d8461aa098cd221b5010176a35 - engine: gotpl - home: https://www.influxdata.com/time-series-platform/chronograf/ - keywords: - - chronograf - - visualizaion - - timeseries - maintainers: - - email: jack@influxdb.com - name: Jack Zampolin - name: chronograf - urls: - - https://kubernetes-charts.storage.googleapis.com/chronograf-0.1.0.tgz - version: 0.1.0 - cockroachdb: - - created: 2017-03-09T19:33:31.12791987Z - description: CockroachDB is a scalable, survivable, strongly-consistent SQL database. - digest: c51bf6c3d07067b80ca8661ff8460b2bb7d25d242f153045668ba95566fc8069 - home: https://www.cockroachlabs.com - icon: https://raw.githubusercontent.com/cockroachdb/cockroach/master/docs/media/cockroach_db.png - maintainers: - - email: alex@cockroachlabs.com - name: Alex Robinson - name: cockroachdb - sources: - - https://github.com/cockroachdb/cockroach - urls: - - https://kubernetes-charts.storage.googleapis.com/cockroachdb-0.2.2.tgz - version: 0.2.2 - - created: 2017-02-13T04:18:31.526409785Z - description: CockroachDB Helm chart for Kubernetes. - digest: 0eec741613e00f7092ec81469f919cd79fec52a22e8685063c0b0d8fd6570c37 - home: https://www.cockroachlabs.com - maintainers: - - email: alex@cockroachlabs.com - name: Alex Robinson - name: cockroachdb - sources: - - https://github.com/cockroachdb/cockroach - urls: - - https://kubernetes-charts.storage.googleapis.com/cockroachdb-0.2.1.tgz - version: 0.2.1 - - created: 2017-01-27T21:48:32.059935168Z - description: CockroachDB Helm chart for Kubernetes. - digest: 7b41add319a997fd3d862d6649b707313f59ac6fa137842db65230342baff619 - home: https://www.cockroachlabs.com - maintainers: - - email: alex@cockroachlabs.com - name: Alex Robinson - name: cockroachdb - sources: - - https://github.com/cockroachdb/cockroach - urls: - - https://kubernetes-charts.storage.googleapis.com/cockroachdb-0.2.0.tgz - version: 0.2.0 - concourse: - - created: 2017-03-09T19:33:31.129846524Z - description: Concourse is a simple and scalable CI system. - digest: b7ea57e289002deba839f52acf6a5919870ab99910f12bcc6edadd4ae5651826 - engine: gotpl - home: https://concourse.ci/ - icon: https://avatars1.githubusercontent.com/u/7809479 - keywords: - - ci - - concourse - - concourse.ci - maintainers: - - email: frodenas@gmail.com - name: Ferran Rodenas - name: concourse - sources: - - https://github.com/concourse/bin - - https://github.com/kubernetes/charts - urls: - - https://kubernetes-charts.storage.googleapis.com/concourse-0.1.3.tgz - version: 0.1.3 - - created: 2017-02-14T19:03:29.77100439Z - description: Concourse is a simple and scalable CI system. - digest: 5f8ed4eb5b0acf8da7b34772714154322405b796553a33fc6ffd779e0a556003 - engine: gotpl - home: https://concourse.ci/ - icon: https://avatars1.githubusercontent.com/u/7809479 - keywords: - - ci - - concourse - - concourse.ci - maintainers: - - email: frodenas@gmail.com - name: Ferran Rodenas - name: concourse - sources: - - https://github.com/concourse/bin - - https://github.com/kubernetes/charts - urls: - - https://kubernetes-charts.storage.googleapis.com/concourse-0.1.2.tgz - version: 0.1.2 - - created: 2017-02-13T21:18:28.254273427Z - description: Concourse is a simple and scalable CI system. - digest: cba53dadd21dbd85b31a1a522a5eaeb49cadfa595ba0762c02dca04905d35f20 - engine: gotpl - home: https://concourse.ci/ - icon: https://avatars1.githubusercontent.com/u/7809479 - keywords: - - ci - - concourse - - concourse.ci - maintainers: - - email: frodenas@gmail.com - name: Ferran Rodenas - name: concourse - sources: - - https://github.com/concourse/bin - - https://github.com/kubernetes/charts - urls: - - https://kubernetes-charts.storage.googleapis.com/concourse-0.1.1.tgz - version: 0.1.1 - - created: 2017-02-10T23:18:26.003782261Z - description: Concourse Helm chart for Kubernetes. - digest: 08e6b4c56357ce15dfd66b0fad8c2df37664877b16b4a0afcbaeb301ddcc7432 - engine: gotpl - home: https://concourse.ci/ - keywords: - - ci - - concourse - - concourse.ci - maintainers: - - email: frodenas@gmail.com - name: Ferran Rodenas - name: concourse - sources: - - https://github.com/concourse/bin - - https://github.com/kubernetes/charts - urls: - - https://kubernetes-charts.storage.googleapis.com/concourse-0.1.0.tgz - version: 0.1.0 - datadog: - - created: 2017-03-09T19:33:31.130993773Z - description: DataDog Agent - digest: b32c28e76004eedf5c160936ccf35adca3a150ae1d0b491df52d017725b5ee90 - home: https://www.datadoghq.com - icon: https://datadog-live.imgix.net/img/dd_logo_70x75.png - keywords: - - monitoring - - alerting - - metric - maintainers: - - email: gtaylor@gc-taylor.com - name: Greg Taylor - name: datadog - sources: - - https://app.datadoghq.com/account/settings#agent/kubernetes - - https://github.com/DataDog/docker-dd-agent - urls: - - https://kubernetes-charts.storage.googleapis.com/datadog-0.2.1.tgz - version: 0.2.1 - - created: 2017-02-11T03:18:26.518137684Z - description: DataDog Agent - digest: d534bdcf4644d88ebfa70c58e57aafed41b75da4264042d4975f70d091e2b493 - keywords: - - monitoring - - alerting - - metric - maintainers: - - email: gtaylor@gc-taylor.com - name: Greg Taylor - name: datadog - sources: - - https://app.datadoghq.com/account/settings#agent/kubernetes - - https://github.com/DataDog/docker-dd-agent - urls: - - https://kubernetes-charts.storage.googleapis.com/datadog-0.2.0.tgz - version: 0.2.0 - - created: 2017-01-04T00:48:19.731877862Z - description: DataDog Agent - digest: 694c1d036d92c8bb60638f7bd66144a991a807dc879bedacf8a5d32e9d72081a - keywords: - - monitoring - - alerting - - metric - maintainers: - - email: gtaylor@gc-taylor.com - name: Greg Taylor - name: datadog - sources: - - https://app.datadoghq.com/account/settings#agent/kubernetes - - https://github.com/DataDog/docker-dd-agent - urls: - - https://kubernetes-charts.storage.googleapis.com/datadog-0.1.0.tgz - version: 0.1.0 - dokuwiki: - - created: 2017-03-09T19:33:31.131514889Z - description: DokuWiki is a standards-compliant, simple to use wiki optimized for - creating documentation. It is targeted at developer teams, workgroups, and small - companies. All data is stored in plain text files, so no database is required. - digest: 3c46f9d9196bbf975711b2bb7c889fd3df1976cc57c3c120c7374d721da0e240 - engine: gotpl - home: http://www.dokuwiki.org/ - icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-110x117.png - keywords: - - dokuwiki - - wiki - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: dokuwiki - sources: - - https://github.com/bitnami/bitnami-docker-dokuwiki - urls: - - https://kubernetes-charts.storage.googleapis.com/dokuwiki-0.1.3.tgz - version: 0.1.3 - - created: 2017-03-02T19:33:28.170205427Z - description: DokuWiki is a standards-compliant, simple to use wiki optimized for - creating documentation. It is targeted at developer teams, workgroups, and small - companies. All data is stored in plain text files, so no database is required. - digest: f533bc20e08179a49cca77b175f897087dc3f2c57e6c89ecbd7264ab5975d66a - engine: gotpl - home: http://www.dokuwiki.org/ - icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-110x117.png - keywords: - - dokuwiki - - wiki - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: dokuwiki - sources: - - https://github.com/bitnami/bitnami-docker-dokuwiki - urls: - - https://kubernetes-charts.storage.googleapis.com/dokuwiki-0.1.2.tgz - version: 0.1.2 - - created: 2017-02-01T02:18:29.116555882Z - description: DokuWiki is a standards-compliant, simple to use wiki optimized for - creating documentation. It is targeted at developer teams, workgroups, and small - companies. All data is stored in plain text files, so no database is required. - digest: 34a926398cfafbf426ff468167ef49577252e260ebce5df33380e6e67b79fe59 - engine: gotpl - home: http://www.dokuwiki.org/ - icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-110x117.png - keywords: - - dokuwiki - - wiki - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: dokuwiki - sources: - - https://github.com/bitnami/bitnami-docker-dokuwiki - urls: - - https://kubernetes-charts.storage.googleapis.com/dokuwiki-0.1.1.tgz - version: 0.1.1 - - created: 2017-01-28T00:33:31.06436596Z - description: DokuWiki is a standards-compliant, simple to use wiki optimized for - creating documentation. It is targeted at developer teams, workgroups, and small - companies. All data is stored in plain text files, so no database is required. - digest: 6825fbacb709cf05901985561be10ba9473a379488d99b71d1590d33f5a81374 - engine: gotpl - home: http://www.dokuwiki.org/ - icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-110x117.png - keywords: - - dokuwiki - - wiki - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: dokuwiki - sources: - - https://github.com/bitnami/bitnami-docker-dokuwiki - urls: - - https://kubernetes-charts.storage.googleapis.com/dokuwiki-0.1.0.tgz - version: 0.1.0 - drupal: - - created: 2017-03-09T19:33:31.132388612Z - description: One of the most versatile open source content management systems. - digest: 24c4f187b50c0e961cc2cacf6e6b2ce6d6b225c73637c578e001bebd9b3f5d48 - engine: gotpl - home: http://www.drupal.org/ - icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png - keywords: - - drupal - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: drupal - sources: - - https://github.com/bitnami/bitnami-docker-drupal - urls: - - https://kubernetes-charts.storage.googleapis.com/drupal-0.4.4.tgz - version: 0.4.4 - - created: 2017-03-02T19:33:28.170963773Z - description: One of the most versatile open source content management systems. - digest: 7fcea4684a3d520454aeaa10beb9f9b1789c09c097680fc484954084f283feb3 - engine: gotpl - home: http://www.drupal.org/ - icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png - keywords: - - drupal - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: drupal - sources: - - https://github.com/bitnami/bitnami-docker-drupal - urls: - - https://kubernetes-charts.storage.googleapis.com/drupal-0.4.3.tgz - version: 0.4.3 - - created: 2017-02-27T17:03:27.765392204Z - description: One of the most versatile open source content management systems. - digest: adb23bc71125b9691b407a47dadf4298de3516805218813b56067967e39db7d8 - engine: gotpl - home: http://www.drupal.org/ - icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png - keywords: - - drupal - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: drupal - sources: - - https://github.com/bitnami/bitnami-docker-drupal - urls: - - https://kubernetes-charts.storage.googleapis.com/drupal-0.4.2.tgz - version: 0.4.2 - - created: 2017-02-11T00:18:52.26723498Z - description: One of the most versatile open source content management systems. - digest: 5de529e25767e8a37b8d6f413daa0fe99f5c304e48ddcfa8adb4d8c7a0496aa7 - engine: gotpl - home: http://www.drupal.org/ - keywords: - - drupal - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: drupal - sources: - - https://github.com/bitnami/bitnami-docker-drupal - urls: - - https://kubernetes-charts.storage.googleapis.com/drupal-0.4.1.tgz - version: 0.4.1 - - created: 2017-01-28T00:33:31.065139372Z - description: One of the most versatile open source content management systems. - digest: a35dbf9d470972cc2461de3e0a8fcf2fec8d0adc04f5a0f1e924505f22c714d7 - engine: gotpl - home: http://www.drupal.org/ - keywords: - - drupal - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: drupal - sources: - - https://github.com/bitnami/bitnami-docker-drupal - urls: - - https://kubernetes-charts.storage.googleapis.com/drupal-0.4.0.tgz - version: 0.4.0 - - created: 2017-01-04T00:48:19.73297256Z - description: One of the most versatile open source content management systems. - digest: a62d686d6bd47643dfa489e395dda89286954f785123a43a88db7ef34f3ea48d - engine: gotpl - home: http://www.drupal.org/ - keywords: - - drupal - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: drupal - sources: - - https://github.com/bitnami/bitnami-docker-drupal - urls: - - https://kubernetes-charts.storage.googleapis.com/drupal-0.3.10.tgz - version: 0.3.10 - - created: 2016-12-15T00:48:24.005322531Z - description: One of the most versatile open source content management systems. - digest: 2c189424bda94eeebb7e6370e96884f09bdfa81498cb93ac4723d24c92a3938e - engine: gotpl - home: http://www.drupal.org/ - keywords: - - drupal - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: drupal - sources: - - https://github.com/bitnami/bitnami-docker-drupal - urls: - - https://kubernetes-charts.storage.googleapis.com/drupal-0.3.9.tgz - version: 0.3.9 - - created: 2016-12-09T18:48:20.182097412Z - description: One of the most versatile open source content management systems. - digest: 3596f47c5dcaa7a975d1c4cb7bf7ef6790c9ad8dda41a5a329e30c1ea8a40d11 - engine: gotpl - home: http://www.drupal.org/ - keywords: - - drupal - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: drupal - sources: - - https://github.com/bitnami/bitnami-docker-drupal - urls: - - https://kubernetes-charts.storage.googleapis.com/drupal-0.3.8.tgz - version: 0.3.8 - - created: 2016-11-21T19:48:21.904806991Z - description: One of the most versatile open source content management systems. - digest: 78b2bb3717be63dccb02ea06b711ca7cf7869848b296b880099c6264e86d86d3 - engine: gotpl - home: http://www.drupal.org/ - keywords: - - drupal - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: drupal - sources: - - https://github.com/bitnami/bitnami-docker-drupal - urls: - - https://kubernetes-charts.storage.googleapis.com/drupal-0.3.7.tgz - version: 0.3.7 - - created: 2016-11-08T15:03:20.739400722Z - description: One of the most versatile open source content management systems. - digest: 5508b29e20a5d609f76319869774f008dcc4bed13bbbc7ed40546bc9af8c7cd7 - engine: gotpl - home: http://www.drupal.org/ - keywords: - - drupal - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: drupal - sources: - - https://github.com/bitnami/bitnami-docker-drupal - urls: - - https://kubernetes-charts.storage.googleapis.com/drupal-0.3.6.tgz - version: 0.3.6 - - created: 2016-11-03T19:33:29.11780736Z - description: One of the most versatile open source content management systems. - digest: 023a282c93f8411fb81bb4fff7820c1337aad0586ccf7dae55bdbed515ad8b05 - engine: gotpl - home: http://www.drupal.org/ - keywords: - - drupal - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: drupal - sources: - - https://github.com/bitnami/bitnami-docker-drupal - urls: - - https://kubernetes-charts.storage.googleapis.com/drupal-0.3.5.tgz - version: 0.3.5 - - created: 2016-10-21T19:18:18.619010562Z - description: One of the most versatile open source content management systems. - digest: 9bdaa53f7a9e82c9b32c7ac9b34b84fd142671732a54423a2dcdc893c4162801 - engine: gotpl - home: http://www.drupal.org/ - keywords: - - drupal - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: drupal - sources: - - https://github.com/bitnami/bitnami-docker-drupal - urls: - - https://kubernetes-charts.storage.googleapis.com/drupal-0.3.4.tgz - version: 0.3.4 - - created: 2016-10-19T00:03:14.027652488Z - description: One of the most versatile open source content management systems. - digest: 25650526abc1036398dbb314d77a0062cbb644b2c5791a258fb863fdaad5093d - engine: gotpl - home: http://www.drupal.org/ - keywords: - - drupal - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: drupal - sources: - - https://github.com/bitnami/bitnami-docker-drupal - urls: - - https://kubernetes-charts.storage.googleapis.com/drupal-0.3.3.tgz - version: 0.3.3 - - created: 2016-10-19T00:03:14.027073479Z - description: One of the most versatile open source content management systems. - digest: 13d5d32d316c08359221d230004dd2adc0152362e87abcc0d61ea191241fa69f - engine: gotpl - home: http://www.drupal.org/ - keywords: - - drupal - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: drupal - sources: - - https://github.com/bitnami/bitnami-docker-drupal - urls: - - https://kubernetes-charts.storage.googleapis.com/drupal-0.3.2.tgz - version: 0.3.2 - - created: 2016-10-19T00:03:14.025451665Z - description: One of the most versatile open source content management systems. - digest: b3f09ecd191f8c06275c96d9af4d77a97c94355525864201e9baf151b17bd5a7 - engine: gotpl - home: http://www.drupal.org/ - keywords: - - drupal - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: drupal - sources: - - https://github.com/bitnami/bitnami-docker-drupal - urls: - - https://kubernetes-charts.storage.googleapis.com/drupal-0.3.1.tgz - version: 0.3.1 - - created: 2016-10-19T00:03:14.024557743Z - description: One of the most versatile open source content management systems. - digest: c56fc55b93b0dead65af7b81bbd54befd5115860698ca475baa5acb178a12e5a - engine: gotpl - home: http://www.drupal.org/ - keywords: - - drupal - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: drupal - sources: - - https://github.com/bitnami/bitnami-docker-drupal - urls: - - https://kubernetes-charts.storage.googleapis.com/drupal-0.3.0.tgz - version: 0.3.0 - etcd-operator: - - apiVersion: v1 - created: 2017-03-09T19:33:31.132764919Z - description: CoreOS etcd-operator Helm chart for Kubernetes - digest: 1eb39b2f0ca26762eb13fc8cb577be741f7bb9d3162ab9c4547bb5176383bc2b - home: https://github.com/coreos/etcd-operator - icon: https://raw.githubusercontent.com/coreos/etcd/master/logos/etcd-horizontal-color.png - maintainers: - - email: chance.zibolski@coreos.com - name: Chance Zibolski - - email: lachlan@deis.com - name: Lachlan Evenson - name: etcd-operator - sources: - - https://github.com/coreos/etcd-operator - urls: - - https://kubernetes-charts.storage.googleapis.com/etcd-operator-0.2.0.tgz - version: 0.2.0 - - apiVersion: v1 - created: 2017-03-08T19:18:29.84391993Z - description: CoreOS etcd-operator Helm chart for Kubernetes - digest: 4a65fe6c61e731b373395e524f160eb4ced32a22cbfb3ff5d406b1c8bc3ae3c7 - home: https://github.com/coreos/etcd-operator - icon: https://raw.githubusercontent.com/coreos/etcd/master/logos/etcd-horizontal-color.png - maintainers: - - email: lachlan@deis.com - name: Lachlan Evenson - name: etcd-operator - sources: - - https://github.com/coreos/etcd-operator - urls: - - https://kubernetes-charts.storage.googleapis.com/etcd-operator-0.1.1.tgz - version: 0.1.1 - - apiVersion: v1 - created: 2017-02-11T03:18:26.519796919Z - description: CoreOS etcd-operator Helm chart for Kubernetes - digest: 9bf72369082c4bad154171b3b68ad435331d6d07ae6d00e79e859f2a1599017b - icon: https://github.com/coreos/etcd/blob/master/logos/etcd-horizontal-color.png - maintainers: - - email: lachlan@deis.com - name: Lachlan Evenson - name: etcd-operator - sources: - - https://github.com/coreos/etcd-operator - urls: - - https://kubernetes-charts.storage.googleapis.com/etcd-operator-0.1.0.tgz - version: 0.1.0 - factorio: - - created: 2017-03-09T19:33:31.133240483Z - description: Factorio dedicated server. - digest: 5a60defdd8ac6f2276950662ba75f65d20c9e37edc85149012a2c84146eb6cff - home: https://www.factorio.com/ - icon: https://us1.factorio.com/assets/img/factorio-logo.png - keywords: - - game - - server - maintainers: - - email: gtaylor@gc-taylor.com - name: Greg Taylor - name: factorio - sources: - - https://github.com/games-on-k8s/docker-factorio - urls: - - https://kubernetes-charts.storage.googleapis.com/factorio-0.1.4.tgz - version: 0.1.4 - - created: 2017-02-13T04:18:31.530714209Z - description: Factorio dedicated server. - digest: 26244a5e1b5f992cdbef73ef9c7ffcaa52af538912fa299210f72275f2c756c9 - keywords: - - game - - server - maintainers: - - email: gtaylor@gc-taylor.com - name: Greg Taylor - name: factorio - sources: - - https://github.com/games-on-k8s/docker-factorio - urls: - - https://kubernetes-charts.storage.googleapis.com/factorio-0.1.3.tgz - version: 0.1.3 - - created: 2017-01-28T00:33:31.066072163Z - description: Factorio dedicated server. - digest: d6f4e42b82713c2da69e1ddcfce4a04fad31d4af915629d8e83e54b90a822f9a - keywords: - - game - - server - maintainers: - - email: gtaylor@gc-taylor.com - name: Greg Taylor - name: factorio - sources: - - https://github.com/games-on-k8s/docker-factorio - urls: - - https://kubernetes-charts.storage.googleapis.com/factorio-0.1.2.tgz - version: 0.1.2 - - created: 2016-12-02T09:03:20.175832035Z - description: Factorio dedicated server. - digest: 3cc1f83669fd1d97eb96e76ba4821e8664350a4c310d3a14e62be18cc09e59b7 - keywords: - - game - - server - maintainers: - - email: gtaylor@gc-taylor.com - name: Greg Taylor - name: factorio - sources: - - https://github.com/games-on-k8s/docker-factorio - urls: - - https://kubernetes-charts.storage.googleapis.com/factorio-0.1.1.tgz - version: 0.1.1 - - created: 2016-11-07T18:33:21.243890443Z - description: Factorio dedicated server. - digest: 8edc1340cd99225a769b5843a677896c0d54a079133f9759211a1839bc7bb3eb - keywords: - - game - - server - maintainers: - - email: gtaylor@gc-taylor.com - name: Greg Taylor - name: factorio - sources: - - https://github.com/games-on-k8s/docker-factorio - urls: - - https://kubernetes-charts.storage.googleapis.com/factorio-0.1.0.tgz - version: 0.1.0 - gcloud-endpoints: - - created: 2017-03-09T19:33:31.133650103Z - description: Develop, deploy, protect and monitor your APIs with Google Cloud - Endpoints. - digest: 172b56d0343c560f06e18858038e2096c910b37075a90f4303f77a79342b56fd - engine: gotpl - home: https://cloud.google.com/endpoints/ - keywords: - - google - - endpoints - - nginx - - gcloud - - proxy - - authentication - - monitoring - - api - - swagger - - open api - maintainers: - - email: mtucker@deis.com - name: Matt Tucker - name: gcloud-endpoints - urls: - - https://kubernetes-charts.storage.googleapis.com/gcloud-endpoints-0.1.0.tgz - version: 0.1.0 - ghost: - - created: 2017-03-09T19:33:31.13445244Z - description: A simple, powerful publishing platform that allows you to share your - stories with the world - digest: 6342a95aeef40690430c2e80b167fbb116a632746cdca49cfac4cbd535eadb22 - engine: gotpl - home: http://www.ghost.org/ - icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png - keywords: - - ghost - - blog - - http - - web - - application - - nodejs - - javascript - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: ghost - sources: - - https://github.com/bitnami/bitnami-docker-ghost - urls: - - https://kubernetes-charts.storage.googleapis.com/ghost-0.4.6.tgz - version: 0.4.6 - - created: 2017-03-08T19:03:31.719494672Z - description: A simple, powerful publishing platform that allows you to share your - stories with the world - digest: 8998a9a4e75e777edb6f06c05b45d461daebba09021161af3bef523efd193b15 - engine: gotpl - home: http://www.ghost.org/ - icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png - keywords: - - ghost - - blog - - http - - web - - application - - nodejs - - javascript - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: ghost - sources: - - https://github.com/bitnami/bitnami-docker-ghost - urls: - - https://kubernetes-charts.storage.googleapis.com/ghost-0.4.5.tgz - version: 0.4.5 - - created: 2017-02-27T17:03:27.767416735Z - description: A simple, powerful publishing platform that allows you to share your - stories with the world - digest: e44c9a53355086ded1832f769dca515b863337ad118ba618ef97f37b3ef84030 - engine: gotpl - home: http://www.ghost.org/ - icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png - keywords: - - ghost - - blog - - http - - web - - application - - nodejs - - javascript - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: ghost - sources: - - https://github.com/bitnami/bitnami-docker-ghost - urls: - - https://kubernetes-charts.storage.googleapis.com/ghost-0.4.4.tgz - version: 0.4.4 - - created: 2017-02-11T00:18:52.2688126Z - description: A simple, powerful publishing platform that allows you to share your - stories with the world - digest: b0c94a93c88fde68bb4fc78e92691d46cd2eb4d32cbac011e034565fbd35d46b - engine: gotpl - home: http://www.ghost.org/ - keywords: - - ghost - - blog - - http - - web - - application - - nodejs - - javascript - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: ghost - sources: - - https://github.com/bitnami/bitnami-docker-ghost - urls: - - https://kubernetes-charts.storage.googleapis.com/ghost-0.4.3.tgz - version: 0.4.3 - - created: 2017-01-29T22:48:35.944809746Z - description: A simple, powerful publishing platform that allows you to share your - stories with the world - digest: 791ccb42b62d56d50c72b37db3282eb3f2af75d667a25542d76c7991004eb822 - engine: gotpl - home: http://www.ghost.org/ - keywords: - - ghost - - blog - - http - - web - - application - - nodejs - - javascript - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: ghost - sources: - - https://github.com/bitnami/bitnami-docker-ghost - urls: - - https://kubernetes-charts.storage.googleapis.com/ghost-0.4.2.tgz - version: 0.4.2 - - created: 2017-01-21T00:18:31.342008382Z - description: A simple, powerful publishing platform that allows you to share your - stories with the world - digest: 331a2b145bfdb39b626313cda7dc539f32dbda5149893957589c5406317fca53 - engine: gotpl - home: http://www.ghost.org/ - keywords: - - ghost - - blog - - http - - web - - application - - nodejs - - javascript - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: ghost - sources: - - https://github.com/bitnami/bitnami-docker-ghost - urls: - - https://kubernetes-charts.storage.googleapis.com/ghost-0.4.1.tgz - version: 0.4.1 - - created: 2016-12-09T18:48:20.183434341Z - description: A simple, powerful publishing platform that allows you to share your - stories with the world - digest: 804227af037082a0f5c3c579feb9e24eb3682449e78876971c93a109bc716f40 - engine: gotpl - home: http://www.ghost.org/ - keywords: - - ghost - - blog - - http - - web - - application - - nodejs - - javascript - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: ghost - sources: - - https://github.com/bitnami/bitnami-docker-ghost - urls: - - https://kubernetes-charts.storage.googleapis.com/ghost-0.4.0.tgz - version: 0.4.0 - gitlab-ce: - - created: 2017-03-09T19:33:31.135642605Z - description: GitLab Community Edition - digest: 20c0895dd3c5c1edbc0e3be4687f0d0874599cd0c53e49560f9f0a91506957ce - home: https://about.gitlab.com - icon: https://gitlab.com/uploads/group/avatar/6543/gitlab-logo-square.png - keywords: - - git - - ci - - deploy - - issue tracker - - code review - - wiki - maintainers: - - email: gtaylor@gc-taylor.com - name: Greg Taylor - name: gitlab-ce - sources: - - https://hub.docker.com/r/gitlab/gitlab-ce/ - - https://docs.gitlab.com/omnibus/ - urls: - - https://kubernetes-charts.storage.googleapis.com/gitlab-ce-0.1.5.tgz - version: 0.1.5 - - created: 2017-02-14T02:48:28.88667289Z - description: GitLab Community Edition - digest: e05d4de559597760d59ca684fab107abcc0968b3260a77b16099d31e0b00cd74 - keywords: - - git - - ci - - deploy - - issue tracker - - code review - - wiki - maintainers: - - email: gtaylor@gc-taylor.com - name: Greg Taylor - name: gitlab-ce - sources: - - https://hub.docker.com/r/gitlab/gitlab-ce/ - - https://docs.gitlab.com/omnibus/ - urls: - - https://kubernetes-charts.storage.googleapis.com/gitlab-ce-0.1.4.tgz - version: 0.1.4 - - created: 2017-02-13T20:18:28.097071087Z - description: GitLab Community Edition - digest: a2fef3fd8d3187f8a4242d66435488bce4193ae3f2db8d3ec14da1c4373c2519 - keywords: - - git - - ci - - deploy - - issue tracker - - code review - - wiki - maintainers: - - email: gtaylor@gc-taylor.com - name: Greg Taylor - name: gitlab-ce - sources: - - https://hub.docker.com/r/gitlab/gitlab-ce/ - - https://docs.gitlab.com/omnibus/ - urls: - - https://kubernetes-charts.storage.googleapis.com/gitlab-ce-0.1.3.tgz - version: 0.1.3 - - created: 2017-01-26T03:18:35.336711333Z - description: GitLab Community Edition - digest: 3ca821c4e3bec2fe7541b95f94503875c508517e2f1200368268511e254df360 - keywords: - - git - - ci - - deploy - - issue tracker - - code review - - wiki - maintainers: - - email: gtaylor@gc-taylor.com - name: Greg Taylor - name: gitlab-ce - sources: - - https://hub.docker.com/r/gitlab/gitlab-ce/ - - https://docs.gitlab.com/omnibus/ - urls: - - https://kubernetes-charts.storage.googleapis.com/gitlab-ce-0.1.2.tgz - version: 0.1.2 - - created: 2017-01-13T20:48:31.520266166Z - description: GitLab Community Edition - digest: d78cfc8cc2e262c49e1aee3af046509b92b022a5cd4b522778e846ddcd808d9b - keywords: - - git - - ci - - deploy - - issue tracker - - code review - - wiki - maintainers: - - email: gtaylor@gc-taylor.com - name: Greg Taylor - name: gitlab-ce - sources: - - https://hub.docker.com/r/gitlab/gitlab-ce/ - - https://docs.gitlab.com/omnibus/ - urls: - - https://kubernetes-charts.storage.googleapis.com/gitlab-ce-0.1.1.tgz - version: 0.1.1 - - created: 2016-12-15T21:18:24.667256782Z - description: GitLab Community Edition - digest: 2c84a056e3f6d66a6aed763b2f4a26c1f4275eb3f6ca64798962a070809c6272 - keywords: - - git - - ci - - deploy - - issue tracker - - code review - - wiki - maintainers: - - email: gtaylor@gc-taylor.com - name: Greg Taylor - name: gitlab-ce - sources: - - https://hub.docker.com/r/gitlab/gitlab-ce/ - - https://docs.gitlab.com/omnibus/ - urls: - - https://kubernetes-charts.storage.googleapis.com/gitlab-ce-0.1.0.tgz - version: 0.1.0 - grafana: - - created: 2017-03-09T19:33:31.136271201Z - description: The leading tool for querying and visualizing time series and metrics. - digest: 7fac33dcd25d8ac60071e56968db133ecfa4f796732f92044d1f7714495840fd - engine: gotpl - home: https://grafana.net - icon: https://raw.githubusercontent.com/grafana/grafana/master/public/img/logo_transparent_400x.png - maintainers: - - email: zanhsieh@gmail.com - name: Ming Hsieh - name: grafana - sources: - - https://github.com/grafana/grafana - urls: - - https://kubernetes-charts.storage.googleapis.com/grafana-0.2.3.tgz - version: 0.2.3 - - created: 2017-02-13T22:33:28.777518221Z - description: The leading tool for querying and visualizing time series and metrics. - digest: 037158b80733838ab2ad84928c999997ab76b5383cbeb4cce6c174fe5bc5ae8d - engine: gotpl - home: https://grafana.net - icon: https://raw.githubusercontent.com/grafana/grafana/master/public/img/logo_transparent_400x.png - maintainers: - - email: zanhsieh@gmail.com - name: Ming Hsieh - name: grafana - sources: - - https://github.com/grafana/grafana - urls: - - https://kubernetes-charts.storage.googleapis.com/grafana-0.2.2.tgz - version: 0.2.2 - - created: 2017-02-13T04:18:31.532928133Z - description: A Helm chart for Kubernetes - digest: e49f08bd26843eb0449304c72fd9be3e65de0d8647457f39807f9aa296ba9b6a - engine: gotpl - home: https://grafana.net - maintainers: - - email: zanhsieh@gmail.com - name: Ming Hsieh - name: grafana - sources: - - https://github.com/grafana/grafana - urls: - - https://kubernetes-charts.storage.googleapis.com/grafana-0.2.1.tgz - version: 0.2.1 - - created: 2017-01-29T23:03:26.897254812Z - description: A Helm chart for Kubernetes - digest: 283be1abb811d005b3759f65761e4465e79f2031be8a47b3d87256e88888f047 - engine: gotpl - home: https://grafana.net - maintainers: - - email: zanhsieh@gmail.com - name: Ming Hsieh - name: grafana - sources: - - https://github.com/grafana/grafana - urls: - - https://kubernetes-charts.storage.googleapis.com/grafana-0.2.0.tgz - version: 0.2.0 - influxdb: - - created: 2017-03-09T19:33:31.136784003Z - description: Scalable datastore for metrics, events, and real-time analytics. - digest: 499e87e9a0cfb2452107eaabc5e81bb5382554731b12e20dac791d81d492044e - engine: gotpl - home: https://www.influxdata.com/time-series-platform/influxdb/ - keywords: - - influxdb - - database - - timeseries - maintainers: - - email: jack@influxdb.com - name: Jack Zampolin - name: influxdb - sources: - - https://github.com/influxdata/influxdb - urls: - - https://kubernetes-charts.storage.googleapis.com/influxdb-0.2.1.tgz - version: 0.2.1 - - created: 2017-02-13T17:03:30.109119817Z - description: Scalable datastore for metrics, events, and real-time analytics. - digest: e78ce7b2aac9538e5f6087fc77e5e30ab41a2a54d9bb1381b02830dd3324f0a9 - engine: gotpl - home: https://www.influxdata.com/time-series-platform/influxdb/ - keywords: - - influxdb - - database - - timeseries - maintainers: - - email: jack@influxdb.com - name: Jack Zampolin - name: influxdb - sources: - - https://github.com/influxdata/influxdb - urls: - - https://kubernetes-charts.storage.googleapis.com/influxdb-0.1.2.tgz - version: 0.1.2 - - created: 2017-02-13T04:33:52.294695041Z - description: Chart for InfluxDB - digest: 3341f3cca2d60540b219390688ac600ec605a331975cd402d6489969a0346aec - engine: gotpl - home: https://www.influxdata.com/time-series-platform/influxdb/ - keywords: - - influxdb - - database - - timeseries - maintainers: - - email: jack@influxdb.com - name: Jack Zampolin - name: influxdb - urls: - - https://kubernetes-charts.storage.googleapis.com/influxdb-0.1.1.tgz - version: 0.1.1 - - created: 2017-01-28T00:48:33.328518706Z - description: Chart for InfluxDB - digest: a64fad23b1d02c8f14955f652f60a36ca2bc9f01fb5f4d80cd88bcf9f96a7300 - engine: gotpl - home: https://www.influxdata.com/time-series-platform/influxdb/ - keywords: - - influxdb - - database - - timeseries - maintainers: - - email: jack@influxdb.com - name: Jack Zampolin - name: influxdb - urls: - - https://kubernetes-charts.storage.googleapis.com/influxdb-0.1.0.tgz - version: 0.1.0 - jasperreports: - - created: 2017-03-09T19:33:31.137658719Z - description: The JasperReports server can be used as a stand-alone or embedded - reporting and BI server that offers web-based reporting, analytic tools and - visualization, and a dashboard feature for compiling multiple custom views - digest: d4a62f7ace55256852e5c650a56ccf671633c4f223180d304cfb03b9cd7993aa - engine: gotpl - home: http://community.jaspersoft.com/project/jasperreports-server - icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-110x117.png - keywords: - - business intelligence - - java - - jasper - - reporting - - analytic - - visualization - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: jasperreports - sources: - - https://github.com/bitnami/bitnami-docker-jasperreports - urls: - - https://kubernetes-charts.storage.googleapis.com/jasperreports-0.1.4.tgz - version: 0.1.4 - - created: 2017-03-08T19:03:31.722665089Z - description: The JasperReports server can be used as a stand-alone or embedded - reporting and BI server that offers web-based reporting, analytic tools and - visualization, and a dashboard feature for compiling multiple custom views - digest: 99af0fca7ef1c475b239f2c8fc2dee6b040ea76b3c30bba1431f358df873aa49 - engine: gotpl - home: http://community.jaspersoft.com/project/jasperreports-server - icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-110x117.png - keywords: - - business intelligence - - java - - jasper - - reporting - - analytic - - visualization - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: jasperreports - sources: - - https://github.com/bitnami/bitnami-docker-jasperreports - urls: - - https://kubernetes-charts.storage.googleapis.com/jasperreports-0.1.3.tgz - version: 0.1.3 - - created: 2017-02-13T21:33:27.741967589Z - description: The JasperReports server can be used as a stand-alone or embedded - reporting and BI server that offers web-based reporting, analytic tools and - visualization, and a dashboard feature for compiling multiple custom views - digest: f01e53d1b89c4fb1fcd9702cd5f4e48d77607aed65f249e1f94b8b21f7eef3f4 - engine: gotpl - home: http://community.jaspersoft.com/project/jasperreports-server - icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-110x117.png - keywords: - - business intelligence - - java - - jasper - - reporting - - analytic - - visualization - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: jasperreports - sources: - - https://github.com/bitnami/bitnami-docker-jasperreports - urls: - - https://kubernetes-charts.storage.googleapis.com/jasperreports-0.1.2.tgz - version: 0.1.2 - - created: 2017-01-28T01:33:32.784491819Z - description: The JasperReports server can be used as a stand-alone or embedded - reporting and BI server that offers web-based reporting, analytic tools and - visualization, and a dashboard feature for compiling multiple custom views - digest: 5cc4af8c88691d7030602c97be2ccbc125ef11129b361da0aa236a127c31b965 - engine: gotpl - home: http://community.jaspersoft.com/project/jasperreports-server - icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-110x117.png - keywords: - - business intelligence - - java - - jasper - - reporting - - analytic - - visualization - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: jasperreports - sources: - - https://github.com/bitnami/bitnami-docker-jasperreports - urls: - - https://kubernetes-charts.storage.googleapis.com/jasperreports-0.1.1.tgz - version: 0.1.1 - jenkins: - - created: 2017-03-09T19:33:31.13828687Z - description: Open source continuous integration server. It supports multiple SCM - tools including CVS, Subversion and Git. It can execute Apache Ant and Apache - Maven-based projects as well as arbitrary scripts. - digest: 6c5039f7ab62e7f74bb902f5804814f66733c535908b4ffae1cf759efa3c6f24 - home: https://jenkins.io/ - icon: https://wiki.jenkins-ci.org/download/attachments/2916393/logo.png - maintainers: - - email: lachlan@deis.com - name: Lachlan Evenson - - email: viglesias@google.com - name: Vic Iglesias - name: jenkins - sources: - - https://github.com/jenkinsci/jenkins - - https://github.com/jenkinsci/docker-jnlp-slave - urls: - - https://kubernetes-charts.storage.googleapis.com/jenkins-0.1.14.tgz - version: 0.1.14 - - created: 2017-02-13T22:18:28.949796594Z - description: Open source continuous integration server. It supports multiple SCM - tools including CVS, Subversion and Git. It can execute Apache Ant and Apache - Maven-based projects as well as arbitrary scripts. - digest: 90aa0fe9bac319690c871327dff6fee85e7de117e961dfa95ba12abedec4e99b - home: https://jenkins.io/ - icon: https://wiki.jenkins-ci.org/download/attachments/2916393/logo.png - maintainers: - - email: lachlan@deis.com - name: Lachlan Evenson - - email: viglesias@google.com - name: Vic Iglesias - name: jenkins - sources: - - https://github.com/jenkinsci/jenkins - - https://github.com/jenkinsci/docker-jnlp-slave - urls: - - https://kubernetes-charts.storage.googleapis.com/jenkins-0.1.13.tgz - version: 0.1.13 - - created: 2017-02-13T21:48:52.587710548Z - description: Open source continuous integration server. It supports multiple SCM - tools including CVS, Subversion and Git. It can execute Apache Ant and Apache - Maven-based projects as well as arbitrary scripts. - digest: 92224a4dcf96772652e91cee6369a08f21f4ba7d1513ee458b5724720f7045ca - home: https://jenkins.io/ - icon: https://wiki.jenkins-ci.org/download/attachments/2916393/logo.png - maintainers: - - email: lachlan@deis.com - name: Lachlan Evenson - - email: viglesias@google.com - name: Vic Iglesias - name: jenkins - sources: - - https://github.com/jenkinsci/jenkins - - https://github.com/jenkinsci/docker-jnlp-slave - urls: - - https://kubernetes-charts.storage.googleapis.com/jenkins-0.1.12.tgz - version: 0.1.12 - - created: 2017-02-13T21:03:28.21318035Z - description: Open source continuous integration server. It supports multiple SCM - tools including CVS, Subversion and Git. It can execute Apache Ant and Apache - Maven-based projects as well as arbitrary scripts. - digest: c75cadf6bc32c90cfc8a61c1f233884004670c8583edefcfcaa43b5573422923 - home: https://jenkins.io/ - icon: https://wiki.jenkins-ci.org/download/attachments/2916393/logo.png - maintainers: - - email: lachlan@deis.com - name: Lachlan Evenson - - email: viglesias@google.com - name: Vic Iglesias - name: jenkins - sources: - - https://github.com/jenkinsci/jenkins - - https://github.com/jenkinsci/docker-jnlp-slave - urls: - - https://kubernetes-charts.storage.googleapis.com/jenkins-0.1.10.tgz - version: 0.1.10 - - created: 2017-02-13T17:03:30.11276321Z - description: Open source continuous integration server. It supports multiple SCM - tools including CVS, Subversion and Git. It can execute Apache Ant and Apache - Maven-based projects as well as arbitrary scripts. - digest: 47f32f975f942607a4b4ca05bd804ece5e2381840508d049251ca692e83080c0 - home: https://jenkins.io/ - icon: https://wiki.jenkins-ci.org/download/attachments/2916393/logo.png - maintainers: - - email: lachlan@deis.com - name: Lachlan Evenson - - email: viglesias@google.com - name: Vic Iglesias - name: jenkins - sources: - - https://github.com/jenkinsci/jenkins - - https://github.com/jenkinsci/docker-jnlp-slave - urls: - - https://kubernetes-charts.storage.googleapis.com/jenkins-0.1.9.tgz - version: 0.1.9 - - created: 2017-02-13T04:18:31.534794405Z - description: Open source continuous integration server. It supports multiple SCM - tools including CVS, Subversion and Git. It can execute Apache Ant and Apache - Maven-based projects as well as arbitrary scripts. - digest: 0764541a4165016e68bef6de1f405964b58ebb2b43b4d738f4bbbbad794b5df8 - home: https://jenkins.io/ - icon: https://wiki.jenkins-ci.org/download/attachments/2916393/logo.png - maintainers: - - email: lachlan@deis.com - name: Lachlan Evenson - - email: viglesias@google.com - name: Vic Iglesias - name: jenkins - sources: - - https://github.com/jenkinsci/jenkins - - https://github.com/jenkinsci/docker-jnlp-slave - urls: - - https://kubernetes-charts.storage.googleapis.com/jenkins-0.1.8.tgz - version: 0.1.8 - - created: 2017-01-27T21:48:32.069740444Z - description: A Jenkins Helm chart for Kubernetes. - digest: c29819a435e9474277846492930e910c9f7c0605717421c4efe411ce476283ab - home: https://jenkins.io/ - icon: https://wiki.jenkins-ci.org/download/attachments/2916393/logo.png - maintainers: - - email: lachlan@deis.com - name: Lachlan Evenson - - email: viglesias@google.com - name: Vic Iglesias - name: jenkins - sources: - - https://github.com/jenkinsci/jenkins - - https://github.com/jenkinsci/docker-jnlp-slave - urls: - - https://kubernetes-charts.storage.googleapis.com/jenkins-0.1.7.tgz - version: 0.1.7 - - created: 2017-01-04T00:48:19.7378014Z - description: A Jenkins Helm chart for Kubernetes. - digest: 58ddd6442c8534de79a8d5eaca48263c744ca9fa6e9af7ceb28d1fda9b88ddb5 - home: https://jenkins.io/ - icon: https://wiki.jenkins-ci.org/download/attachments/2916393/logo.png - maintainers: - - email: lachlan@deis.com - name: Lachlan Evenson - - email: viglesias@google.com - name: Vic Iglesias - name: jenkins - sources: - - https://github.com/jenkinsci/jenkins - - https://github.com/jenkinsci/docker-jnlp-slave - urls: - - https://kubernetes-charts.storage.googleapis.com/jenkins-0.1.6.tgz - version: 0.1.6 - - created: 2016-12-19T22:03:51.103057889Z - description: A Jenkins Helm chart for Kubernetes. - digest: 2c8dff77b7ad736ac54e5335f5d52bfacaf7ea2ad97558da507b7f5bb9f4d549 - home: https://jenkins.io/ - icon: https://wiki.jenkins-ci.org/download/attachments/2916393/logo.png - maintainers: - - email: lachlan@deis.com - name: Lachlan Evenson - - email: viglesias@google.com - name: Vic Iglesias - name: jenkins - sources: - - https://github.com/jenkinsci/jenkins - - https://github.com/jenkinsci/docker-jnlp-slave - urls: - - https://kubernetes-charts.storage.googleapis.com/jenkins-0.1.5.tgz - version: 0.1.5 - - created: 2016-12-09T18:48:20.183887307Z - description: A Jenkins Helm chart for Kubernetes. - digest: 0b7016624acec8d66f6d919611e8f1c9853a5475c9801c3da6e50b7ce044ed57 - home: https://jenkins.io/ - icon: https://wiki.jenkins-ci.org/download/attachments/2916393/logo.png - maintainers: - - email: lachlan@deis.com - name: Lachlan Evenson - - email: viglesias@google.com - name: Vic Iglesias - name: jenkins - sources: - - https://github.com/jenkinsci/jenkins - - https://github.com/jenkinsci/docker-jnlp-slave - urls: - - https://kubernetes-charts.storage.googleapis.com/jenkins-0.1.4.tgz - version: 0.1.4 - - created: 2016-12-05T18:33:22.028569484Z - description: A Jenkins Helm chart for Kubernetes. - digest: 82b53a4c90ac2cf71bb41d870939ce1e980192e1407ba8825051c0ed98c04906 - home: https://jenkins.io/ - icon: https://wiki.jenkins-ci.org/download/attachments/2916393/logo.png - maintainers: - - email: lachlan@deis.com - name: Lachlan Evenson - - email: viglesias@google.com - name: Vic Iglesias - name: jenkins - sources: - - https://github.com/jenkinsci/jenkins - - https://github.com/jenkinsci/docker-jnlp-slave - urls: - - https://kubernetes-charts.storage.googleapis.com/jenkins-0.1.1.tgz - version: 0.1.1 - - created: 2016-10-19T00:03:14.028672648Z - description: A Jenkins Helm chart for Kubernetes. - digest: ea97fbfeaf9b9701d71dbc2b6fa50bff25a33f0565233d81170a6ac225d22ab4 - home: https://jenkins.io/ - icon: https://wiki.jenkins-ci.org/download/attachments/2916393/logo.png - maintainers: - - email: lachlan@deis.com - name: Lachlan Evenson - - email: viglesias@google.com - name: Vic Iglesias - name: jenkins - sources: - - https://github.com/jenkinsci/jenkins - - https://github.com/jenkinsci/docker-jnlp-slave - urls: - - https://kubernetes-charts.storage.googleapis.com/jenkins-0.1.0.tgz - version: 0.1.0 - joomla: - - created: 2017-03-09T19:33:31.139676983Z - description: PHP content management system (CMS) for publishing web content - digest: f9dedab2fc2dbf170cf45b2c230baa6d20aad9a6f8ccfcb09c459602fc5213dc - engine: gotpl - home: http://www.joomla.org/ - icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png - keywords: - - joomla - - cms - - blog - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: joomla - sources: - - https://github.com/bitnami/bitnami-docker-joomla - urls: - - https://kubernetes-charts.storage.googleapis.com/joomla-0.4.5.tgz - version: 0.4.5 - - created: 2017-03-02T19:33:28.178324258Z - description: PHP content management system (CMS) for publishing web content - digest: 1e067e459873ae832d54ff516a3420f7f0e16ecd8f72f4c4f02be22e47702077 - engine: gotpl - home: http://www.joomla.org/ - icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png - keywords: - - joomla - - cms - - blog - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: joomla - sources: - - https://github.com/bitnami/bitnami-docker-joomla - urls: - - https://kubernetes-charts.storage.googleapis.com/joomla-0.4.4.tgz - version: 0.4.4 - - created: 2017-02-27T16:48:32.159029074Z - description: PHP content management system (CMS) for publishing web content - digest: 9a99b15e83e18955eb364985cd545659f1176ef203ac730876dfe39499edfb18 - engine: gotpl - home: http://www.joomla.org/ - icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png - keywords: - - joomla - - cms - - blog - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: joomla - sources: - - https://github.com/bitnami/bitnami-docker-joomla - urls: - - https://kubernetes-charts.storage.googleapis.com/joomla-0.4.3.tgz - version: 0.4.3 - - created: 2017-02-11T00:18:52.272598223Z - description: PHP content management system (CMS) for publishing web content - digest: 07c3a16eb674ffc74fe5b2b16191b8bb24c63bdae9bce9710bda1999920c46fc - engine: gotpl - home: http://www.joomla.org/ - keywords: - - joomla - - cms - - blog - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: joomla - sources: - - https://github.com/bitnami/bitnami-docker-joomla - urls: - - https://kubernetes-charts.storage.googleapis.com/joomla-0.4.2.tgz - version: 0.4.2 - - created: 2017-01-21T00:18:31.345952551Z - description: PHP content management system (CMS) for publishing web content - digest: 95fbe272015941544609eee90b3bffd5172bfdec10be13636510caa8478a879e - engine: gotpl - home: http://www.joomla.org/ - keywords: - - joomla - - cms - - blog - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: joomla - sources: - - https://github.com/bitnami/bitnami-docker-joomla - urls: - - https://kubernetes-charts.storage.googleapis.com/joomla-0.4.1.tgz - version: 0.4.1 - - created: 2016-12-09T18:48:20.18539038Z - description: PHP content management system (CMS) for publishing web content - digest: 0a01ea051ec15274932c8d82076c1a9fd62584b0fb916a81372319bef223c20e - engine: gotpl - home: http://www.joomla.org/ - keywords: - - joomla - - cms - - blog - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: joomla - sources: - - https://github.com/bitnami/bitnami-docker-joomla - urls: - - https://kubernetes-charts.storage.googleapis.com/joomla-0.4.0.tgz - version: 0.4.0 - kapacitor: - - created: 2017-03-09T19:33:31.14057086Z - description: InfluxDB's native data processing engine. It can process both stream - and batch data from InfluxDB. - digest: c592b3bf2dec92c2273057b984b7289c17032dc578ea0f2ec86aeb5e838a7047 - engine: gotpl - home: https://www.influxdata.com/time-series-platform/kapacitor/ - keywords: - - kapacitor - - stream - - etl - - timeseries - maintainers: - - email: jack@influxdb.com - name: Jack Zampolin - name: kapacitor - sources: - - https://github.com/influxdata/kapacitor - urls: - - https://kubernetes-charts.storage.googleapis.com/kapacitor-0.2.1.tgz - version: 0.2.1 - - created: 2017-02-13T21:48:52.58883187Z - description: InfluxDB's native data processing engine. It can process both stream - and batch data from InfluxDB. - digest: 18971c9c5b3805830f72fdfacd6c1dfc173db4797994f61b3666296b67abe70a - engine: gotpl - home: https://www.influxdata.com/time-series-platform/kapacitor/ - keywords: - - kapacitor - - stream - - etl - - timeseries - maintainers: - - email: jack@influxdb.com - name: Jack Zampolin - name: kapacitor - sources: - - https://github.com/influxdata/kapacitor - urls: - - https://kubernetes-charts.storage.googleapis.com/kapacitor-0.1.2.tgz - version: 0.1.2 - - created: 2017-02-13T21:03:28.215149313Z - description: Chart for Chronograf - digest: e0d29608602df25a9352629afd3fd7615e01a23549e1d1eba8101ee1b725e528 - engine: gotpl - home: https://www.influxdata.com/time-series-platform/kapacitor/ - keywords: - - kapacitor - - stream - - etl - - timeseries - maintainers: - - email: jack@influxdb.com - name: Jack Zampolin - name: kapacitor - urls: - - https://kubernetes-charts.storage.googleapis.com/kapacitor-0.1.1.tgz - version: 0.1.1 - - created: 2017-01-28T01:33:32.786133788Z - description: Chart for Chronograf - digest: efde65696634d3bf1dc4c9caae44e68f7ed8c7599aab809c8cdd0fde7e4f9efc - engine: gotpl - home: https://www.influxdata.com/time-series-platform/kapacitor/ - keywords: - - kapacitor - - stream - - etl - - timeseries - maintainers: - - email: jack@influxdb.com - name: Jack Zampolin - name: kapacitor - urls: - - https://kubernetes-charts.storage.googleapis.com/kapacitor-0.1.0.tgz - version: 0.1.0 - kube-lego: - - apiVersion: v1 - created: 2017-03-09T19:33:31.140975497Z - description: Automatically requests certificates from Let's Encrypt - digest: 0110b8c36f6ad016684ef904b5e514751ffa7a89ba7b88cf4a8376c889e03693 - engine: gotpl - keywords: - - kube-lego - - letsencrypt - maintainers: - - email: jack.zampolin@gmail.com - name: Jack Zampolin - - email: mgoodness@gmail.com - name: Michael Goodness - name: kube-lego - sources: - - https://github.com/jetstack/kube-lego/tree/master/examples/nginx - urls: - - https://kubernetes-charts.storage.googleapis.com/kube-lego-0.1.7.tgz - version: 0.1.7 - - apiVersion: v1 - created: 2017-03-02T19:33:28.179029307Z - description: Automatically requests certificates from Let's Encrypt - digest: 275265fda80ccc62376ebd3a200bbea94b105cbf3481efcc726d6a33d73da8d0 - engine: gotpl - keywords: - - kube-lego - - letsencrypt - maintainers: - - email: jack.zampolin@gmail.com - name: Jack Zampolin - - email: mgoodness@gmail.com - name: Michael Goodness - name: kube-lego - sources: - - https://github.com/jetstack/kube-lego/tree/master/examples/nginx - urls: - - https://kubernetes-charts.storage.googleapis.com/kube-lego-0.1.6.tgz - version: 0.1.6 - - apiVersion: v1 - created: 2017-02-27T17:33:27.264070807Z - description: Automatically requests certificates from Let's Encrypt - digest: 62de296cc21c6b286097de9ac389033e18a4cd3cf414cd97b7a02d4c3be14d6d - engine: gotpl - keywords: - - kube-lego - - letsencrypt - maintainers: - - email: jack.zampolin@gmail.com - name: Jack Zampolin - - email: mgoodness@gmail.com - name: Michael Goodness - name: kube-lego - sources: - - https://github.com/jetstack/kube-lego/tree/master/examples/nginx - urls: - - https://kubernetes-charts.storage.googleapis.com/kube-lego-0.1.5.tgz - version: 0.1.5 - - apiVersion: v1 - created: 2017-02-14T15:48:28.578398517Z - description: Automatically requests certificates from Let's Encrypt - digest: 1bc993b68eb51fb00e4eb18a65df9e2182f895bd46134d6ddfdc0dd3b6432a98 - engine: gotpl - keywords: - - kube-lego - - letsencrypt - maintainers: - - email: jack.zampolin@gmail.com - name: Jack Zampolin - - email: mgoodness@gmail.com - name: Michael Goodness - name: kube-lego - sources: - - https://github.com/jetstack/kube-lego/tree/master/examples/nginx - urls: - - https://kubernetes-charts.storage.googleapis.com/kube-lego-0.1.4.tgz - version: 0.1.4 - - apiVersion: v1 - created: 2017-02-11T00:48:25.354730418Z - description: Automatically requests certificates from Let's Encrypt - digest: d4b3694951c2bb42b356217a8f12870bd3806dac4de3390056279998fd634c34 - engine: gotpl - keywords: - - kube-lego - - letsencrypt - maintainers: - - email: jack.zampolin@gmail.com - name: Jack Zampolin - - email: mgoodness@gmail.com - name: Michael Goodness - name: kube-lego - sources: - - https://github.com/jetstack/kube-lego/tree/master/examples/nginx - urls: - - https://kubernetes-charts.storage.googleapis.com/kube-lego-0.1.3.tgz - version: 0.1.3 - kube2iam: - - created: 2017-03-09T19:33:31.141404081Z - description: Provide IAM credentials to pods based on annotations. - digest: 2035d8dfae5733fa475914694cd060e28954b1f5c930b6c4800ee165d23abc46 - engine: gotpl - keywords: - - kube2iam - - aws - - iam - - security - maintainers: - - email: jm.carp@gmail.com - name: Josh Carp - - email: michael.haselton@gmail.com - name: Michael Haselton - - email: mgoodness@gmail.com - name: Michael Goodness - name: kube2iam - sources: - - https://github.com/jtblin/kube2iam - urls: - - https://kubernetes-charts.storage.googleapis.com/kube2iam-0.2.1.tgz - version: 0.2.1 - - created: 2017-03-02T18:48:30.431985789Z - description: Provide IAM credentials to pods based on annotations. - digest: 5d2226fb101b800fc5a6edb5566d329880c604d75f4245da55f47027bcf5546e - engine: gotpl - keywords: - - kube2iam - - aws - - iam - - security - maintainers: - - email: jm.carp@gmail.com - name: Josh Carp - - email: michael.haselton@gmail.com - name: Michael Haselton - - email: mgoodness@gmail.com - name: Michael Goodness - name: kube2iam - sources: - - https://github.com/jtblin/kube2iam - urls: - - https://kubernetes-charts.storage.googleapis.com/kube2iam-0.2.0.tgz - version: 0.2.0 - - created: 2017-02-13T17:03:30.115672844Z - description: Provide IAM credentials to containers running inside a kubernetes - cluster based on annotations. - digest: 63d913fb8f31c287b1f1d45d310517c0b22597ecdaef19d7ad2520bff990969a - engine: gotpl - keywords: - - kube2iam - - aws - - iam - - security - maintainers: - - email: jm.carp@gmail.com - name: Josh Carp - - email: michael.haselton@gmail.com - name: Michael Haselton - name: kube2iam - sources: - - https://github.com/jtblin/kube2iam - urls: - - https://kubernetes-charts.storage.googleapis.com/kube2iam-0.1.1.tgz - version: 0.1.1 - - created: 2017-01-19T00:33:27.789172853Z - description: Provide IAM credentials to containers running inside a kubernetes - cluster based on annotations. - digest: b4de5bddfa0af6737ea91d9b3a9bcfc3a0e5a656045e06038505613b214120fc - engine: gotpl - keywords: - - kube2iam - - aws - - iam - - security - maintainers: - - email: jm.carp@gmail.com - name: Josh Carp - - email: michael.haselton@gmail.com - name: Michael Haselton - name: kube2iam - sources: - - https://github.com/jtblin/kube2iam - urls: - - https://kubernetes-charts.storage.googleapis.com/kube2iam-0.1.0.tgz - version: 0.1.0 - linkerd: - - apiVersion: v1 - created: 2017-03-09T19:33:31.141727971Z - description: Service mesh for cloud native apps - digest: f9f2287d026c6de3a522bdcffdff061f81a8e64274da4acefdc9d2177b603570 - home: https://linkerd.io/ - icon: https://pbs.twimg.com/profile_images/690258997237014528/KNgQd9GL_400x400.png - maintainers: - - email: viglesias@google.com - name: Vic Iglesias - name: linkerd - sources: - - https://github.com/BuoyantIO/linkerd - urls: - - https://kubernetes-charts.storage.googleapis.com/linkerd-0.1.1.tgz - version: 0.1.1 - - apiVersion: v1 - created: 2017-02-13T04:33:52.299092507Z - description: Service mesh for cloud native apps - digest: 147759e4982f1dffce894e0d4242fb914d21014700a7d9891e8dc352318633fa - home: https://linkerd.io/ - maintainers: - - email: viglesias@google.com - name: Vic Iglesias - name: linkerd - sources: - - https://github.com/BuoyantIO/linkerd - urls: - - https://kubernetes-charts.storage.googleapis.com/linkerd-0.1.0.tgz - version: 0.1.0 - magento: - - created: 2017-03-09T19:33:31.142591331Z - description: A feature-rich flexible e-commerce solution. It includes transaction - options, multi-store functionality, loyalty programs, product categorization - and shopper filtering, promotion rules, and more. - digest: 311a98182281b981f60fbd446b42f6af4b86e0bac9445bf2248b1b47dfce5933 - engine: gotpl - home: https://magento.com/ - icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-110x117.png - keywords: - - magento - - e-commerce - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: magento - sources: - - https://github.com/bitnami/bitnami-docker-magento - urls: - - https://kubernetes-charts.storage.googleapis.com/magento-0.4.4.tgz - version: 0.4.4 - - created: 2017-03-02T19:33:28.180428252Z - description: A feature-rich flexible e-commerce solution. It includes transaction - options, multi-store functionality, loyalty programs, product categorization - and shopper filtering, promotion rules, and more. - digest: fccfa89493a977a2f898a5e6d3c6fa4fda15faf0dc0a9e48772744a32c2b1d24 - engine: gotpl - home: https://magento.com/ - icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-110x117.png - keywords: - - magento - - e-commerce - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: magento - sources: - - https://github.com/bitnami/bitnami-docker-magento - urls: - - https://kubernetes-charts.storage.googleapis.com/magento-0.4.3.tgz - version: 0.4.3 - - created: 2017-02-27T16:48:32.161186722Z - description: A feature-rich flexible e-commerce solution. It includes transaction - options, multi-store functionality, loyalty programs, product categorization - and shopper filtering, promotion rules, and more. - digest: fb33cafa4874855419ea3178dc0660a856ed6f8b581b984f38e86701d54e54a6 - engine: gotpl - home: https://magento.com/ - icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-110x117.png - keywords: - - magento - - e-commerce - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: magento - sources: - - https://github.com/bitnami/bitnami-docker-magento - urls: - - https://kubernetes-charts.storage.googleapis.com/magento-0.4.2.tgz - version: 0.4.2 - - created: 2017-01-21T00:18:31.349108265Z - description: A feature-rich flexible e-commerce solution. It includes transaction - options, multi-store functionality, loyalty programs, product categorization - and shopper filtering, promotion rules, and more. - digest: c597107a5cf512d616e5e4134e562f8fcc6e79ad1f78241e9a40ded77e77ef62 - engine: gotpl - home: https://magento.com/ - icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-110x117.png - keywords: - - magento - - e-commerce - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: magento - sources: - - https://github.com/bitnami/bitnami-docker-magento - urls: - - https://kubernetes-charts.storage.googleapis.com/magento-0.4.1.tgz - version: 0.4.1 - - created: 2017-01-04T00:48:19.74048297Z - description: A feature-rich flexible e-commerce solution. It includes transaction - options, multi-store functionality, loyalty programs, product categorization - and shopper filtering, promotion rules, and more. - digest: 526115583b8ae741f6819c2a0d3e719a6622a63a0a2e9918e56d2ebaa6ad498b - engine: gotpl - home: https://magento.com/ - icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-110x117.png - keywords: - - magento - - e-commerce - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: magento - sources: - - https://github.com/bitnami/bitnami-docker-magento - urls: - - https://kubernetes-charts.storage.googleapis.com/magento-0.4.0.tgz - version: 0.4.0 - mariadb: - - created: 2017-03-09T19:33:31.14307293Z - description: Fast, reliable, scalable, and easy to use open-source relational - database system. MariaDB Server is intended for mission-critical, heavy-load - production systems as well as for embedding into mass-deployed software. - digest: 587d7ef318ee1229d14e3b783c3e825f90f274f56b2eb62f1c7126f69fec6fc2 - engine: gotpl - home: https://mariadb.org - icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png - keywords: - - mariadb - - mysql - - database - - sql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mariadb - sources: - - https://github.com/bitnami/bitnami-docker-mariadb - urls: - - https://kubernetes-charts.storage.googleapis.com/mariadb-0.5.10.tgz - version: 0.5.10 - - created: 2017-03-08T19:03:31.728285865Z - description: Fast, reliable, scalable, and easy to use open-source relational - database system. MariaDB Server is intended for mission-critical, heavy-load - production systems as well as for embedding into mass-deployed software. - digest: cfec18e7be68a616a5e4944c21ed0b65dab1701cf7182d0d1bdea83df6a77ab1 - engine: gotpl - home: https://mariadb.org - icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png - keywords: - - mariadb - - mysql - - database - - sql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mariadb - sources: - - https://github.com/bitnami/bitnami-docker-mariadb - urls: - - https://kubernetes-charts.storage.googleapis.com/mariadb-0.5.9.tgz - version: 0.5.9 - - created: 2017-02-11T00:18:52.27620633Z - description: Chart for MariaDB - digest: 33990fb57b2fafb4396498e02a8083f6a476cf0b465a4a52905a67aab73f3f43 - engine: gotpl - home: https://mariadb.org - keywords: - - mariadb - - mysql - - database - - sql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mariadb - sources: - - https://github.com/bitnami/bitnami-docker-mariadb - urls: - - https://kubernetes-charts.storage.googleapis.com/mariadb-0.5.8.tgz - version: 0.5.8 - - created: 2017-01-31T01:03:26.972704179Z - description: Chart for MariaDB - digest: 177a882b4248d6ebb2e72e125a3be775085bf082e4eb8f4359fee9e8640ede50 - engine: gotpl - home: https://mariadb.org - keywords: - - mariadb - - mysql - - database - - sql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mariadb - sources: - - https://github.com/bitnami/bitnami-docker-mariadb - urls: - - https://kubernetes-charts.storage.googleapis.com/mariadb-0.5.7.tgz - version: 0.5.7 - - created: 2017-01-27T22:33:30.411626628Z - description: Chart for MariaDB - digest: 730d179ab0d5922494e3c21594ce7b4f118f7fe796071dfcfdbbc2714ada7d15 - engine: gotpl - home: https://mariadb.org - keywords: - - mariadb - - mysql - - database - - sql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mariadb - sources: - - https://github.com/bitnami/bitnami-docker-mariadb - urls: - - https://kubernetes-charts.storage.googleapis.com/mariadb-0.5.6.tgz - version: 0.5.6 - - created: 2016-12-15T23:18:25.557355931Z - description: Chart for MariaDB - digest: c7811fad8165eb5d57eb55ad4e58d63e949d2f710c0fbbcd28cca11bb6af6de6 - engine: gotpl - home: https://mariadb.org - keywords: - - mariadb - - mysql - - database - - sql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mariadb - sources: - - https://github.com/bitnami/bitnami-docker-mariadb - urls: - - https://kubernetes-charts.storage.googleapis.com/mariadb-0.5.5.tgz - version: 0.5.5 - - created: 2016-12-09T18:48:20.185787408Z - description: Chart for MariaDB - digest: c6b73c5146d085a202f838741526fe5fdc2fae55b8f5f17c0c42fd195c65311f - engine: gotpl - home: https://mariadb.org - keywords: - - mariadb - - mysql - - database - - sql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mariadb - sources: - - https://github.com/bitnami/bitnami-docker-mariadb - urls: - - https://kubernetes-charts.storage.googleapis.com/mariadb-0.5.4.tgz - version: 0.5.4 - - created: 2016-11-23T00:33:20.016012859Z - description: Chart for MariaDB - digest: 38786f4f6fe4fb7a2dcbc38aa0bfea72e40e4d9766e1679942af60e25b5ba9bd - engine: gotpl - home: https://mariadb.org - keywords: - - mariadb - - mysql - - database - - sql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mariadb - sources: - - https://github.com/bitnami/bitnami-docker-mariadb - urls: - - https://kubernetes-charts.storage.googleapis.com/mariadb-0.5.3.tgz - version: 0.5.3 - - created: 2016-11-03T19:33:29.120356141Z - description: Chart for MariaDB - digest: 8eb24c65fbdb75711a8ffd8f8f6ed206951cdc3a24d74a355121bc11c6c02f3b - engine: gotpl - home: https://mariadb.org - keywords: - - mariadb - - mysql - - database - - sql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mariadb - sources: - - https://github.com/bitnami/bitnami-docker-mariadb - urls: - - https://kubernetes-charts.storage.googleapis.com/mariadb-0.5.2.tgz - version: 0.5.2 - - created: 2016-10-19T00:03:14.031007257Z - description: Chart for MariaDB - digest: 6544dbf62586f570762a3a469f0086fe595379454fb46a53d001206a0e282268 - engine: gotpl - home: https://mariadb.org - keywords: - - mariadb - - mysql - - database - - sql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mariadb - sources: - - https://github.com/bitnami/bitnami-docker-mariadb - urls: - - https://kubernetes-charts.storage.googleapis.com/mariadb-0.5.1.tgz - version: 0.5.1 - - created: 2016-10-19T00:03:14.030598543Z - description: Chart for MariaDB - digest: c9f67f8140b3e7243d479f819d4ec8b2e992ee462b8fa579b920e86066955312 - engine: gotpl - home: https://mariadb.org - keywords: - - mariadb - - mysql - - database - - sql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mariadb - sources: - - https://github.com/bitnami/bitnami-docker-mariadb - urls: - - https://kubernetes-charts.storage.googleapis.com/mariadb-0.5.0.tgz - version: 0.5.0 - - created: 2016-10-19T00:03:14.03012509Z - description: Chart for MariaDB - digest: fe8adb0730567ad8cd63501ac18b178ec2a9a590d43dd7ad91fd2d5fcf6114be - engine: gotpl - home: https://mariadb.org - keywords: - - mariadb - - mysql - - database - - sql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mariadb - sources: - - https://github.com/bitnami/bitnami-docker-mariadb - urls: - - https://kubernetes-charts.storage.googleapis.com/mariadb-0.4.0.tgz - version: 0.4.0 - - created: 2016-10-19T00:03:14.029775557Z - description: Chart for MariaDB - digest: 47fe08909187da025e7e86e9534a736df11e2629c5c123178113fe776992e9e7 - engine: gotpl - home: https://mariadb.org - keywords: - - mariadb - - mysql - - database - - sql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mariadb - sources: - - https://github.com/bitnami/bitnami-docker-mariadb - urls: - - https://kubernetes-charts.storage.googleapis.com/mariadb-0.3.1.tgz - version: 0.3.1 - - created: 2016-10-19T00:03:14.02942396Z - description: Chart for MariaDB - digest: 7354d2672b3983e98fe5c31d96d2c3d9c73edefe642eb5e1981484804315c4bc - engine: gotpl - home: https://mariadb.org - keywords: - - mariadb - - mysql - - database - - sql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mariadb - sources: - - https://github.com/bitnami/bitnami-docker-mariadb - urls: - - https://kubernetes-charts.storage.googleapis.com/mariadb-0.3.0.tgz - version: 0.3.0 - mediawiki: - - created: 2017-03-09T19:33:31.143853494Z - description: Extremely powerful, scalable software and a feature-rich wiki implementation - that uses PHP to process and display data stored in a database. - digest: 0e419c2c5d87997f94a32da6597af3f3b52120dc1ec682dcbb6b238fb4825e06 - engine: gotpl - home: http://www.mediawiki.org/ - icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png - keywords: - - mediawiki - - wiki - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mediawiki - sources: - - https://github.com/bitnami/bitnami-docker-mediawiki - urls: - - https://kubernetes-charts.storage.googleapis.com/mediawiki-0.4.5.tgz - version: 0.4.5 - - created: 2017-03-08T19:03:31.729226516Z - description: Extremely powerful, scalable software and a feature-rich wiki implementation - that uses PHP to process and display data stored in a database. - digest: 6f4dde26737f7f1aa63ffda6c259ce388e3a3509225f90f334bfc3f0f7617bc1 - engine: gotpl - home: http://www.mediawiki.org/ - icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png - keywords: - - mediawiki - - wiki - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mediawiki - sources: - - https://github.com/bitnami/bitnami-docker-mediawiki - urls: - - https://kubernetes-charts.storage.googleapis.com/mediawiki-0.4.4.tgz - version: 0.4.4 - - created: 2017-02-13T04:18:31.539427547Z - description: Extremely powerful, scalable software and a feature-rich wiki implementation - that uses PHP to process and display data stored in a database. - digest: 0ba52b8c4c9e0bee3eb76fe625d2dc88729a1cdf41ace9d13cd4abc5b477cfb8 - engine: gotpl - home: http://www.mediawiki.org/ - keywords: - - mediawiki - - wiki - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mediawiki - sources: - - https://github.com/bitnami/bitnami-docker-mediawiki - urls: - - https://kubernetes-charts.storage.googleapis.com/mediawiki-0.4.3.tgz - version: 0.4.3 - - created: 2017-01-21T00:18:31.350311075Z - description: Extremely powerful, scalable software and a feature-rich wiki implementation - that uses PHP to process and display data stored in a database. - digest: f49df3e17f97b238743aad0376eb9db7e4a9bca3829a3a65d7bbb349344a73be - engine: gotpl - home: http://www.mediawiki.org/ - keywords: - - mediawiki - - wiki - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mediawiki - sources: - - https://github.com/bitnami/bitnami-docker-mediawiki - urls: - - https://kubernetes-charts.storage.googleapis.com/mediawiki-0.4.2.tgz - version: 0.4.2 - - created: 2016-12-15T21:18:24.670966268Z - description: Extremely powerful, scalable software and a feature-rich wiki implementation - that uses PHP to process and display data stored in a database. - digest: 339a90050d5cf4216140409349a356aa7cd8dc95e2cbdca06e4fdd11e87aa963 - engine: gotpl - home: http://www.mediawiki.org/ - keywords: - - mediawiki - - wiki - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mediawiki - sources: - - https://github.com/bitnami/bitnami-docker-mediawiki - urls: - - https://kubernetes-charts.storage.googleapis.com/mediawiki-0.4.1.tgz - version: 0.4.1 - - created: 2016-12-09T18:48:20.186416136Z - description: Extremely powerful, scalable software and a feature-rich wiki implementation - that uses PHP to process and display data stored in a database. - digest: 9617f13f51f5bb016a072f2a026c627420721a1c5b7cd22f32d6cd0c90f34eda - engine: gotpl - home: http://www.mediawiki.org/ - keywords: - - mediawiki - - wiki - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mediawiki - sources: - - https://github.com/bitnami/bitnami-docker-mediawiki - urls: - - https://kubernetes-charts.storage.googleapis.com/mediawiki-0.4.0.tgz - version: 0.4.0 - memcached: - - created: 2017-03-09T19:33:31.144202478Z - description: Free & open source, high-performance, distributed memory object caching - system. - digest: 36ceb2767094598171b2851ecda54bd43d862b9b81aa4b294f3d8c8d59ddd79c - engine: gotpl - home: http://memcached.org/ - icon: https://upload.wikimedia.org/wikipedia/en/thumb/2/27/Memcached.svg/1024px-Memcached.svg.png - keywords: - - memcached - - cache - maintainers: - - email: gtaylor@gc-taylor.com - name: Greg Taylor - name: memcached - sources: - - https://github.com/docker-library/memcached - urls: - - https://kubernetes-charts.storage.googleapis.com/memcached-0.4.1.tgz - version: 0.4.1 - - created: 2017-02-13T04:18:31.539713999Z - description: Chart for Memcached - digest: 2b918dd8129a9d706e58b3de459004e3367c05a162d3e3cdb031cb6818d5f820 - engine: gotpl - home: http://memcached.org/ - keywords: - - memcached - - cache - maintainers: - - email: gtaylor@gc-taylor.com - name: Greg Taylor - name: memcached - sources: - - https://github.com/docker-library/memcached - urls: - - https://kubernetes-charts.storage.googleapis.com/memcached-0.4.0.tgz - version: 0.4.0 - minecraft: - - created: 2017-03-09T19:33:31.144633166Z - description: Minecraft server - digest: 5a42451d7c2f69b7b77c40e91ef60ca284798bcab8aa5b97b1f3f2559612d443 - keywords: - - game - - server - maintainers: - - email: gtaylor@gc-taylor.com - name: Greg Taylor - name: minecraft - sources: - - https://hub.docker.com/r/itzg/minecraft-server/~/dockerfile/ - - https://github.com/itzg/dockerfiles - urls: - - https://kubernetes-charts.storage.googleapis.com/minecraft-0.1.2.tgz - version: 0.1.2 - - created: 2017-01-30T23:33:28.437640114Z - description: Minecraft server - digest: 87c2ef91c8feaee680bb26ba16362c6b366429e0f54119c40dbf7a5ce3f22553 - keywords: - - game - - server - maintainers: - - email: gtaylor@gc-taylor.com - name: Greg Taylor - name: minecraft - sources: - - https://hub.docker.com/r/itzg/minecraft-server/~/dockerfile/ - - https://github.com/itzg/dockerfiles - urls: - - https://kubernetes-charts.storage.googleapis.com/minecraft-0.1.1.tgz - version: 0.1.1 - - created: 2016-12-05T21:03:20.22190695Z - description: Minecraft server - digest: 2cd423a28eb8a0186fba171cc17dcbe6f5a53d1a99e4078f9713afed3b61cce6 - keywords: - - game - - server - maintainers: - - email: gtaylor@gc-taylor.com - name: Greg Taylor - name: minecraft - sources: - - https://hub.docker.com/r/itzg/minecraft-server/~/dockerfile/ - - https://github.com/itzg/dockerfiles - urls: - - https://kubernetes-charts.storage.googleapis.com/minecraft-0.1.0.tgz - version: 0.1.0 - minio: - - apiVersion: v1 - created: 2017-03-09T19:33:31.145132764Z - description: Distributed object storage server built for cloud applications and - devops. - digest: d19b721fcb5f0566cce4a259e296b957ba982e87343947e1cbdbe979c770378d - home: https://minio.io - icon: https://www.minio.io/logo/img/logo-dark.svg - keywords: - - storage - - object-storage - - S3 - maintainers: - - email: hello@acale.ph - name: Acaleph - - email: hello@minio.io - name: Minio - name: minio - sources: - - https://github.com/minio/minio - urls: - - https://kubernetes-charts.storage.googleapis.com/minio-0.0.4.tgz - version: 0.0.4 - - apiVersion: v1 - created: 2017-02-13T04:33:52.302413618Z - description: A Minio Helm chart for Kubernetes - digest: cd58148df0776329fe5f518c542759565cab29dbefbc43f6b0ffdac86c9b31a9 - home: https://minio.io - keywords: - - storage - - object-storage - - S3 - maintainers: - - email: hello@acale.ph - name: Acaleph - - email: hello@minio.io - name: Minio - name: minio - sources: - - https://github.com/minio/minio - urls: - - https://kubernetes-charts.storage.googleapis.com/minio-0.0.3.tgz - version: 0.0.3 - - apiVersion: v1 - created: 2017-02-03T20:18:29.15659791Z - description: A Minio Helm chart for Kubernetes - digest: 699003bf2ef4cbb570580887da980412c1b9d6d173636de5def6053c7ba29a2a - home: https://minio.io - keywords: - - storage - - object-storage - - S3 - maintainers: - - email: hello@acale.ph - name: Acaleph - - email: hello@minio.io - name: Minio - name: minio - sources: - - https://github.com/minio/minio - urls: - - https://kubernetes-charts.storage.googleapis.com/minio-0.0.2.tgz - version: 0.0.2 - - apiVersion: v1 - created: 2017-01-12T02:36:05.500400572Z - description: A Minio Helm chart for Kubernetes - digest: aed17de3622988f8366126e158c740535c8d3bc55a0a85a3dcfabf07ac1395e9 - home: https://minio.io - keywords: - - storage - - object-storage - - S3 - maintainers: - - email: hello@acale.ph - name: Acaleph - name: minio - sources: - - https://github.com/minio/minio - urls: - - https://kubernetes-charts.storage.googleapis.com/minio-0.0.1.tgz - version: 0.0.1 - mongodb: - - created: 2017-03-09T19:33:31.145494477Z - description: NoSQL document-oriented database that stores JSON-like documents - with dynamic schemas, simplifying the integration of data in content-driven - applications. - digest: cdc9fc28ff9139fcc6be015177e481f9d3765d6af284dce1999fc334cd7ef3a4 - engine: gotpl - home: https://mongodb.org - icon: https://bitnami.com/assets/stacks/mongodb/img/mongodb-stack-220x234.png - keywords: - - mongodb - - database - - nosql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mongodb - sources: - - https://github.com/bitnami/bitnami-docker-mongodb - urls: - - https://kubernetes-charts.storage.googleapis.com/mongodb-0.4.8.tgz - version: 0.4.8 - - created: 2017-03-08T19:03:31.731176002Z - description: NoSQL document-oriented database that stores JSON-like documents - with dynamic schemas, simplifying the integration of data in content-driven - applications. - digest: 7d334e12acf9327f58f9a890e884a61ad760da2b1081d4a79b5680bee055cdbd - engine: gotpl - home: https://mongodb.org - icon: https://bitnami.com/assets/stacks/mongodb/img/mongodb-stack-220x234.png - keywords: - - mongodb - - database - - nosql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mongodb - sources: - - https://github.com/bitnami/bitnami-docker-mongodb - urls: - - https://kubernetes-charts.storage.googleapis.com/mongodb-0.4.7.tgz - version: 0.4.7 - - created: 2017-02-14T03:48:27.566728756Z - description: NoSQL document-oriented database that stores JSON-like documents - with dynamic schemas, simplifying the integration of data in content-driven - applications. - digest: 27f9071cb81e9d3745776861f453db80b6ab6bf4507809f2e5c59e8a34d44939 - engine: gotpl - home: https://mongodb.org - icon: https://bitnami.com/assets/stacks/mongodb/img/mongodb-stack-220x234.png - keywords: - - mongodb - - database - - nosql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mongodb - sources: - - https://github.com/bitnami/bitnami-docker-mongodb - urls: - - https://kubernetes-charts.storage.googleapis.com/mongodb-0.4.6.tgz - version: 0.4.6 - - created: 2017-02-10T23:18:26.017406698Z - description: Chart for MongoDB - digest: 27a78b0c6300f4567975af18a3ca145940a716a53de42ed89c75872788d2848b - engine: gotpl - home: https://mongodb.org - keywords: - - mongodb - - database - - nosql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mongodb - sources: - - https://github.com/bitnami/bitnami-docker-mongodb - urls: - - https://kubernetes-charts.storage.googleapis.com/mongodb-0.4.5.tgz - version: 0.4.5 - - created: 2017-01-30T23:33:28.438574863Z - description: Chart for MongoDB - digest: 9bcc0e2aa1d7d8f8c2ce43ef9284af39e5794214d185577ed1baff07c1a019f4 - engine: gotpl - home: https://mongodb.org - keywords: - - mongodb - - database - - nosql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mongodb - sources: - - https://github.com/bitnami/bitnami-docker-mongodb - urls: - - https://kubernetes-charts.storage.googleapis.com/mongodb-0.4.4.tgz - version: 0.4.4 - - created: 2017-01-13T20:48:31.52900213Z - description: Chart for MongoDB - digest: be548ec183b8c44f031504864b85b7a0d48d745fa450bf733f89646c9cbbda44 - engine: gotpl - home: https://mongodb.org - keywords: - - mongodb - - database - - nosql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mongodb - sources: - - https://github.com/bitnami/bitnami-docker-mongodb - urls: - - https://kubernetes-charts.storage.googleapis.com/mongodb-0.4.3.tgz - version: 0.4.3 - - created: 2017-01-03T17:48:20.740456601Z - description: Chart for MongoDB - digest: 027dd50ff545309506daa0636a62d633071379040f8be080a403cb6d67399b0d - engine: gotpl - home: https://mongodb.org - keywords: - - mongodb - - database - - nosql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mongodb - sources: - - https://github.com/bitnami/bitnami-docker-mongodb - urls: - - https://kubernetes-charts.storage.googleapis.com/mongodb-0.4.2.tgz - version: 0.4.2 - - created: 2016-12-15T00:48:24.012807516Z - description: Chart for MongoDB - digest: 42e8e56c715ea3bd2b8f9c188f5a9aec48a87654fb5215c35728ddf6c33c7437 - engine: gotpl - home: https://mongodb.org - keywords: - - mongodb - - database - - nosql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mongodb - sources: - - https://github.com/bitnami/bitnami-docker-mongodb - urls: - - https://kubernetes-charts.storage.googleapis.com/mongodb-0.4.1.tgz - version: 0.4.1 - - created: 2016-12-09T18:48:20.187403991Z - description: Chart for MongoDB - digest: d5eabbe99b03b4f7f71c461580564e3d965c2602bfd1be4dd09f1c54c8e7e9db - engine: gotpl - home: https://mongodb.org - keywords: - - mongodb - - database - - nosql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mongodb - sources: - - https://github.com/bitnami/bitnami-docker-mongodb - urls: - - https://kubernetes-charts.storage.googleapis.com/mongodb-0.4.0.tgz - version: 0.4.0 - mysql: - - created: 2017-03-09T19:33:31.145985966Z - description: Fast, reliable, scalable, and easy to use open-source relational - database system. - digest: 66b9a6787a36c72095c24499a45f2d3bfc700e31420a8926d09c029604ac4c98 - engine: gotpl - home: https://www.mysql.com/ - icon: https://www.mysql.com/common/logos/logo-mysql-170x115.png - keywords: - - mysql - - database - - sql - maintainers: - - email: viglesias@google.com - name: Vic Iglesias - name: mysql - sources: - - https://github.com/kubernetes/charts - - https://github.com/docker-library/mysql - urls: - - https://kubernetes-charts.storage.googleapis.com/mysql-0.2.5.tgz - version: 0.2.5 - - created: 2017-02-13T04:18:31.541320579Z - description: Chart for MySQL - digest: 3653a2d111ca60287ffbf10cbbb3c268dcb8666422bf5518d37adb9b2f131f7c - engine: gotpl - home: https://www.mysql.com/ - keywords: - - mysql - - database - - sql - maintainers: - - email: viglesias@google.com - name: Vic Iglesias - name: mysql - sources: - - https://github.com/kubernetes/charts - - https://github.com/docker-library/mysql - urls: - - https://kubernetes-charts.storage.googleapis.com/mysql-0.2.4.tgz - version: 0.2.4 - - created: 2017-01-27T22:33:30.41494884Z - description: Chart for MySQL - digest: 1244814f3490d23172a923e52339ad8b126f3037483db462591405863884e7ce - engine: gotpl - home: https://www.mysql.com/ - keywords: - - mysql - - database - - sql - maintainers: - - email: viglesias@google.com - name: Vic Iglesias - name: mysql - sources: - - https://github.com/kubernetes/charts - - https://github.com/docker-library/mysql - urls: - - https://kubernetes-charts.storage.googleapis.com/mysql-0.2.3.tgz - version: 0.2.3 - - created: 2016-12-21T19:33:19.335178436Z - description: Chart for MySQL - digest: 5dfdd6301aa5c7424c5ecc649ac3038ea72afd0e25d4c350c79e8ba84fe15faf - engine: gotpl - home: https://www.mysql.com/ - keywords: - - mysql - - database - - sql - maintainers: - - email: viglesias@google.com - name: Vic Iglesias - name: mysql - sources: - - https://github.com/kubernetes/charts - - https://github.com/docker-library/mysql - urls: - - https://kubernetes-charts.storage.googleapis.com/mysql-0.2.2.tgz - version: 0.2.2 - - created: 2016-12-09T18:48:20.187750412Z - description: Chart for MySQL - digest: 3dd20c2ed2faf64b9f940e813b18d7fa1c18c1b86101de453c7c836940e05680 - engine: gotpl - home: https://www.mysql.com/ - keywords: - - mysql - - database - - sql - maintainers: - - email: viglesias@google.com - name: Vic Iglesias - name: mysql - sources: - - https://github.com/kubernetes/charts - - https://github.com/docker-library/mysql - urls: - - https://kubernetes-charts.storage.googleapis.com/mysql-0.2.1.tgz - version: 0.2.1 - - created: 2016-11-04T14:18:20.013918541Z - description: Chart for MySQL - digest: 9723417e4d71713ed87b701eff52a1a74abea64c3cf852833b1e9bb96ff6fd55 - engine: gotpl - home: https://www.mysql.com/ - keywords: - - mysql - - database - - sql - maintainers: - - email: viglesias@google.com - name: Vic Iglesias - name: mysql - sources: - - https://github.com/kubernetes/charts - - https://github.com/docker-library/mysql - urls: - - https://kubernetes-charts.storage.googleapis.com/mysql-0.2.0.tgz - version: 0.2.0 - - created: 2016-11-03T03:18:19.715713217Z - description: Chart for MySQL - digest: fef93423760265f8bb3aedf9a922ed0169e018071ea467f22c17527006ae6a60 - engine: gotpl - home: https://www.mysql.com/ - keywords: - - mysql - - database - - sql - maintainers: - - email: viglesias@google.com - name: Vic Iglesias - name: mysql - sources: - - https://github.com/kubernetes/charts - - https://github.com/docker-library/mysql - urls: - - https://kubernetes-charts.storage.googleapis.com/mysql-0.1.2.tgz - version: 0.1.2 - - created: 2016-10-19T18:33:14.866729383Z - description: Chart for MySQL - digest: 3cb4495336e12d4fea28a1f7e3f02bbb18249582227866088cf6ac89587a2527 - engine: gotpl - home: https://www.mysql.com/ - keywords: - - mysql - - database - - sql - maintainers: - - email: viglesias@google.com - name: Vic Iglesias - name: mysql - sources: - - https://github.com/kubernetes/charts - - https://github.com/docker-library/mysql - urls: - - https://kubernetes-charts.storage.googleapis.com/mysql-0.1.1.tgz - version: 0.1.1 - - created: 2016-10-19T00:03:14.031801762Z - description: Chart for MySQL - digest: cba3eff1710520dbfbbeca2b0f9a754e0ddc172eb83ce51211606387955a6572 - engine: gotpl - home: https://www.mysql.com/ - keywords: - - mysql - - database - - sql - maintainers: - - email: viglesias@google.com - name: Vic Iglesias - name: mysql - sources: - - https://github.com/kubernetes/charts - - https://github.com/docker-library/mysql - urls: - - https://kubernetes-charts.storage.googleapis.com/mysql-0.1.0.tgz - version: 0.1.0 - nginx-ingress: - - created: 2017-03-09T19:33:31.146512877Z - description: An nginx Ingress controller that uses ConfigMap to store the nginx - configuration. - digest: 731823c88a849f945f405c192d92daf27afad37af76befb1eb92251240de29d7 - engine: gotpl - icon: https://upload.wikimedia.org/wikipedia/commons/thumb/c/c5/Nginx_logo.svg/500px-Nginx_logo.svg.png - keywords: - - ingress - - nginx - maintainers: - - email: jack.zampolin@gmail.com - name: Jack Zampolin - - email: mgoodness@gmail.com - name: Michael Goodness - name: nginx-ingress - sources: - - https://github.com/kubernetes/contrib/tree/master/ingress/controllers/nginx - urls: - - https://kubernetes-charts.storage.googleapis.com/nginx-ingress-0.3.0.tgz - version: 0.3.0 - nginx-lego: - - created: 2017-03-09T19:33:31.14695344Z - description: Chart for nginx-ingress-controller and kube-lego - digest: da173cc1a9313ea0b11f5fb7aa67a20a2ac797b2f129a079c06284e8a9765f21 - engine: gotpl - keywords: - - kube-lego - - nginx-ingress-controller - - nginx - - letsencrypt - maintainers: - - email: jack.zampolin@gmail.com - name: Jack Zampolin - name: nginx-lego - sources: - - https://github.com/kubernetes/contrib/tree/master/ingress/controllers/nginx - - https://github.com/jetstack/kube-lego/tree/master/examples/nginx - urls: - - https://kubernetes-charts.storage.googleapis.com/nginx-lego-0.2.1.tgz - version: 0.2.1 - - created: 2017-03-02T18:48:30.43738595Z - description: Chart for nginx-ingress-controller and kube-lego - digest: 9a8ea81371900d2c7931b0143f991ef0fde41038d26a968628008aef14ec08ef - engine: gotpl - keywords: - - kube-lego - - nginx-ingress-controller - - nginx - - letsencrypt - maintainers: - - email: jack.zampolin@gmail.com - name: Jack Zampolin - name: nginx-lego - sources: - - https://github.com/kubernetes/contrib/tree/master/ingress/controllers/nginx - - https://github.com/jetstack/kube-lego/tree/master/examples/nginx - urls: - - https://kubernetes-charts.storage.googleapis.com/nginx-lego-0.2.0.tgz - version: 0.2.0 - - created: 2017-01-12T02:52:37.835917781Z - description: Chart for nginx-ingress-controller and kube-lego - digest: 2dee942e546940beb8301a94a1a51e22c7a38b4c5592701528149dfaa83e1bb6 - engine: gotpl - keywords: - - kube-lego - - nginx-ingress-controller - - nginx - - letsencrypt - maintainers: - - email: jack.zampolin@gmail.com - name: Jack Zampolin - name: nginx-lego - sources: - - https://github.com/kubernetes/contrib/tree/master/ingress/controllers/nginx - - https://github.com/jetstack/kube-lego/tree/master/examples/nginx - urls: - - https://kubernetes-charts.storage.googleapis.com/nginx-lego-0.1.0.tgz - version: 0.1.0 - odoo: - - created: 2017-03-09T19:33:31.147618017Z - description: A suite of web based open source business apps. - digest: 1339b6efbc6b4df849c460ddbcade9f81ede3a6a800e9566f54acc1c52dccb4b - engine: gotpl - home: https://www.odoo.com/ - icon: https://bitnami.com/assets/stacks/odoo/img/odoo-stack-110x117.png - keywords: - - odoo - - crm - - www - - http - - web - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: odoo - sources: - - https://github.com/bitnami/bitnami-docker-odoo - urls: - - https://kubernetes-charts.storage.googleapis.com/odoo-0.4.1.tgz - version: 0.4.1 - - created: 2017-03-08T19:03:31.734764598Z - description: A suite of web based open source business apps. - digest: 15b1d5339086427990fb3d0ee8f65e768b398195f2db63b0356e6c79f4d4b981 - engine: gotpl - home: https://www.odoo.com/ - icon: https://bitnami.com/assets/stacks/odoo/img/odoo-stack-110x117.png - keywords: - - odoo - - crm - - www - - http - - web - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: odoo - sources: - - https://github.com/bitnami/bitnami-docker-odoo - urls: - - https://kubernetes-charts.storage.googleapis.com/odoo-0.4.0.tgz - version: 0.4.0 - opencart: - - created: 2017-03-09T19:33:31.149504586Z - description: A free and open source e-commerce platform for online merchants. - It provides a professional and reliable foundation for a successful online store. - digest: 0abb5c30e0eef2a06b36b83b0c11f4bcf3df14ea416c5e49cb821c78e6783bce - engine: gotpl - home: https://opencart.com/ - icon: https://bitnami.com/assets/stacks/opencart/img/opencart-stack-110x117.png - keywords: - - opencart - - e-commerce - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: opencart - sources: - - https://github.com/bitnami/bitnami-docker-opencart - urls: - - https://kubernetes-charts.storage.googleapis.com/opencart-0.4.4.tgz - version: 0.4.4 - - created: 2017-03-02T19:33:28.187180475Z - description: A free and open source e-commerce platform for online merchants. - It provides a professional and reliable foundation for a successful online store. - digest: 1a80dfcec98c190b8710d7db47c22c3882a05a046b3d767c84094cef983a1556 - engine: gotpl - home: https://opencart.com/ - icon: https://bitnami.com/assets/stacks/opencart/img/opencart-stack-110x117.png - keywords: - - opencart - - e-commerce - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: opencart - sources: - - https://github.com/bitnami/bitnami-docker-opencart - urls: - - https://kubernetes-charts.storage.googleapis.com/opencart-0.4.3.tgz - version: 0.4.3 - - created: 2017-02-23T02:33:30.963491381Z - description: A free and open source e-commerce platform for online merchants. - It provides a professional and reliable foundation for a successful online store. - digest: d3092c4ed82db569937e435d3dc6bcddce420540bf340dd54a554a57b62c6aaa - engine: gotpl - home: https://opencart.com/ - icon: https://bitnami.com/assets/stacks/opencart/img/opencart-stack-110x117.png - keywords: - - opencart - - e-commerce - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: opencart - sources: - - https://github.com/bitnami/bitnami-docker-opencart - urls: - - https://kubernetes-charts.storage.googleapis.com/opencart-0.4.2.tgz - version: 0.4.2 - - created: 2017-01-21T00:18:31.354317974Z - description: A free and open source e-commerce platform for online merchants. - It provides a professional and reliable foundation for a successful online store. - digest: afbaa2517e811990bc4b31495a4634b6399615493cf344215a5658de2f33575b - engine: gotpl - home: https://opencart.com/ - icon: https://bitnami.com/assets/stacks/opencart/img/opencart-stack-110x117.png - keywords: - - opencart - - e-commerce - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: opencart - sources: - - https://github.com/bitnami/bitnami-docker-opencart - urls: - - https://kubernetes-charts.storage.googleapis.com/opencart-0.4.1.tgz - version: 0.4.1 - - created: 2017-01-04T00:48:19.745672724Z - description: A free and open source e-commerce platform for online merchants. - It provides a professional and reliable foundation for a successful online store. - digest: f0e46cf67f8594c6d92f02fad4a23fdf7aa94bdb145bfde39436e17f0a8930f5 - engine: gotpl - home: https://opencart.com/ - icon: https://bitnami.com/assets/stacks/opencart/img/opencart-stack-110x117.png - keywords: - - opencart - - e-commerce - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: opencart - sources: - - https://github.com/bitnami/bitnami-docker-opencart - urls: - - https://kubernetes-charts.storage.googleapis.com/opencart-0.4.0.tgz - version: 0.4.0 - openvpn: - - apiVersion: v1 - created: 2017-03-09T19:33:31.149998199Z - description: A Helm chart to install an openvpn server inside a kubernetes cluster. Certificate - generation is also part of the deployment, and this chart will generate client - keys as needed. - digest: 6f71c3ff593313044c0e6c2dba4ab7d44c8003db82684aeec84cd963d4a6c295 - home: https://openvpn.net/index.php/open-source.html - icon: https://forums.openvpn.net/styles/openvpn/theme/images/ovpnlogo.png - keywords: - - openvpn - - vpn - - tunnel - - network - - service - - connectivity - - encryption - maintainers: - - email: john.felten@gmail.com - name: John Felten - name: openvpn - urls: - - https://kubernetes-charts.storage.googleapis.com/openvpn-1.0.1.tgz - version: 1.0.1 - - apiVersion: v1 - created: 2017-01-27T21:48:32.078827588Z - description: A Helm chart to install an openvpn server inside a kubernetes cluster. Certificate - generation is also part of the deployment, and this chart will generate client - keys as needed. - digest: a12cfddce900c8a4ef6cea0cef5426d5fb23c657cdab433f9307f6d048273f6b - home: https://openvpn.net/index.php/open-source.html - icon: https://forums.openvpn.net/styles/openvpn/theme/images/ovpnlogo.png - keywords: - - openvpn - - vpn - - tunnel - - network - - service - - connectivity - - encryption - maintainers: - - email: john.felten@gmail.com - name: John Felten - name: openvpn - urls: - - https://kubernetes-charts.storage.googleapis.com/openvpn-1.0.0.tgz - version: 1.0.0 - orangehrm: - - created: 2017-03-09T19:33:31.151008901Z - description: OrangeHRM is a free HR management system that offers a wealth of - modules to suit the needs of your business. - digest: 87483fe0c39f63c61549a85103b9423b30ac4bfe2b19a7af083eaf7dd3491ce2 - engine: gotpl - home: https://www.orangehrm.com - icon: https://bitnami.com/assets/stacks/orangehrm/img/orangehrm-stack-110x117.png - keywords: - - orangehrm - - http - - https - - web - - application - - php - - human resources - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: orangehrm - sources: - - https://github.com/bitnami/bitnami-docker-orangehrm - urls: - - https://kubernetes-charts.storage.googleapis.com/orangehrm-0.4.3.tgz - version: 0.4.3 - - created: 2017-03-02T19:33:28.188778055Z - description: OrangeHRM is a free HR management system that offers a wealth of - modules to suit the needs of your business. - digest: d03e9f261dd50212f6c2c0ecc3a84cbabda89493d8bfc28ad95c6c9a6a195af9 - engine: gotpl - home: https://www.orangehrm.com - icon: https://bitnami.com/assets/stacks/orangehrm/img/orangehrm-stack-110x117.png - keywords: - - orangehrm - - http - - https - - web - - application - - php - - human resources - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: orangehrm - sources: - - https://github.com/bitnami/bitnami-docker-orangehrm - urls: - - https://kubernetes-charts.storage.googleapis.com/orangehrm-0.4.2.tgz - version: 0.4.2 - - created: 2017-02-23T02:33:30.964778113Z - description: OrangeHRM is a free HR management system that offers a wealth of - modules to suit the needs of your business. - digest: b5e5ed301b5321a99a7147173ec6fa7cb471879a585b9af0e8ac2741f0409e48 - engine: gotpl - home: https://www.orangehrm.com - icon: https://bitnami.com/assets/stacks/orangehrm/img/orangehrm-stack-110x117.png - keywords: - - orangehrm - - http - - https - - web - - application - - php - - human resources - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: orangehrm - sources: - - https://github.com/bitnami/bitnami-docker-orangehrm - urls: - - https://kubernetes-charts.storage.googleapis.com/orangehrm-0.4.1.tgz - version: 0.4.1 - - created: 2017-02-01T00:48:29.581953712Z - description: OrangeHRM is a free HR management system that offers a wealth of - modules to suit the needs of your business. - digest: 4ca6ccafc5bc408cb9e61139b8914468e0d8eeed7bffb62eea51c6e40697e8dd - engine: gotpl - home: https://www.orangehrm.com - icon: https://bitnami.com/assets/stacks/orangehrm/img/orangehrm-stack-110x117.png - keywords: - - orangehrm - - http - - https - - web - - application - - php - - human resources - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: orangehrm - sources: - - https://github.com/bitnami/bitnami-docker-orangehrm - urls: - - https://kubernetes-charts.storage.googleapis.com/orangehrm-0.4.0.tgz - version: 0.4.0 - osclass: - - created: 2017-03-09T19:33:31.15182867Z - description: Osclass is a php script that allows you to quickly create and manage - your own free classifieds site. - digest: 23472bb37c094dad3122a96f6fd6a3967f1d41547121ecf2622b557f2fc5da8b - engine: gotpl - home: https://osclass.org/ - icon: https://bitnami.com/assets/stacks/osclass/img/osclass-stack-110x117.png - keywords: - - osclass - - classifieds - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: osclass - sources: - - https://github.com/bitnami/bitnami-docker-osclass - urls: - - https://kubernetes-charts.storage.googleapis.com/osclass-0.4.1.tgz - version: 0.4.1 - - created: 2017-02-23T02:33:30.965596248Z - description: Osclass is a php script that allows you to quickly create and manage - your own free classifieds site. - digest: 7c21cef0b281e3da5b3c9b60940c1b010c34fe866c95615b7d0afd10c480178c - engine: gotpl - home: https://osclass.org/ - icon: https://bitnami.com/assets/stacks/osclass/img/osclass-stack-110x117.png - keywords: - - osclass - - classifieds - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: osclass - sources: - - https://github.com/bitnami/bitnami-docker-osclass - urls: - - https://kubernetes-charts.storage.googleapis.com/osclass-0.4.0.tgz - version: 0.4.0 - owncloud: - - created: 2017-03-09T19:33:31.152647262Z - description: A file sharing server that puts the control and security of your - own data back into your hands. - digest: fb78c2ea47996c6781ddfe2dca6aea87cbb8b895e1fc5fea404aa28735d4a2ec - engine: gotpl - home: https://owncloud.org/ - icon: https://bitnami.com/assets/stacks/owncloud/img/owncloud-stack-220x234.png - keywords: - - owncloud - - storage - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: owncloud - sources: - - https://github.com/bitnami/bitnami-docker-owncloud - urls: - - https://kubernetes-charts.storage.googleapis.com/owncloud-0.4.5.tgz - version: 0.4.5 - - created: 2017-03-08T19:03:31.738784117Z - description: A file sharing server that puts the control and security of your - own data back into your hands. - digest: 07e18bccf9dc0a8fcff42e97c422520530c2c5057c2a9c14767842609bcaa7ac - engine: gotpl - home: https://owncloud.org/ - icon: https://bitnami.com/assets/stacks/owncloud/img/owncloud-stack-220x234.png - keywords: - - owncloud - - storage - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: owncloud - sources: - - https://github.com/bitnami/bitnami-docker-owncloud - urls: - - https://kubernetes-charts.storage.googleapis.com/owncloud-0.4.4.tgz - version: 0.4.4 - - created: 2017-02-11T03:18:26.536480213Z - description: A file sharing server that puts the control and security of your - own data back into your hands. - digest: 4e534bdc4be184c59fbcbcff4641f2bfa341cd7f4ed3668912cd47c1336f5dea - engine: gotpl - home: https://owncloud.org/ - keywords: - - owncloud - - storage - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: owncloud - sources: - - https://github.com/bitnami/bitnami-docker-owncloud - urls: - - https://kubernetes-charts.storage.googleapis.com/owncloud-0.4.3.tgz - version: 0.4.3 - - created: 2017-01-30T23:48:29.172608299Z - description: A file sharing server that puts the control and security of your - own data back into your hands. - digest: b41eb1fc1eea6311f3ad15b459f99b77e96b944b81ea50ebccc941191d496141 - engine: gotpl - home: https://owncloud.org/ - keywords: - - owncloud - - storage - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: owncloud - sources: - - https://github.com/bitnami/bitnami-docker-owncloud - urls: - - https://kubernetes-charts.storage.googleapis.com/owncloud-0.4.2.tgz - version: 0.4.2 - - created: 2017-01-21T00:18:31.35624854Z - description: A file sharing server that puts the control and security of your - own data back into your hands. - digest: 89901fc256d6a4f878d77b51bf23eb77358dedb040052b34a09cbe9ca607487f - engine: gotpl - home: https://owncloud.org/ - keywords: - - owncloud - - storage - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: owncloud - sources: - - https://github.com/bitnami/bitnami-docker-owncloud - urls: - - https://kubernetes-charts.storage.googleapis.com/owncloud-0.4.1.tgz - version: 0.4.1 - - created: 2016-12-21T18:33:20.278724682Z - description: A file sharing server that puts the control and security of your - own data back into your hands. - digest: 7ec2dfe27bf42e8ee2e0672964decc2fbec94ec4fb60af2f3e9e91e13fdae08a - engine: gotpl - home: https://owncloud.org/ - keywords: - - owncloud - - storage - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: owncloud - sources: - - https://github.com/bitnami/bitnami-docker-owncloud - urls: - - https://kubernetes-charts.storage.googleapis.com/owncloud-0.4.0.tgz - version: 0.4.0 - phabricator: - - created: 2017-03-09T19:33:31.153509669Z - description: Collection of open source web applications that help software companies - build better software. - digest: ef626563185a4b41ff7da03a9bd5548903061c6140d2d65300e4b1c1d39a2f28 - engine: gotpl - home: https://www.phacility.com/phabricator/ - icon: https://bitnami.com/assets/stacks/phabricator/img/phabricator-stack-110x117.png - keywords: - - phabricator - - http - - https - - web - - application - - collaboration - - project management - - bug tracking - - code review - - wiki - - git - - mercurial - - subversion - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: phabricator - sources: - - https://github.com/bitnami/bitnami-docker-phabricator - urls: - - https://kubernetes-charts.storage.googleapis.com/phabricator-0.4.4.tgz - version: 0.4.4 - - created: 2017-03-02T19:33:28.191377992Z - description: Collection of open source web applications that help software companies - build better software. - digest: 544373e984918da349351f05fdb7a8cf0c695726890bcd4cc348e786e1c55d57 - engine: gotpl - home: https://www.phacility.com/phabricator/ - icon: https://bitnami.com/assets/stacks/phabricator/img/phabricator-stack-110x117.png - keywords: - - phabricator - - http - - https - - web - - application - - collaboration - - project management - - bug tracking - - code review - - wiki - - git - - mercurial - - subversion - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: phabricator - sources: - - https://github.com/bitnami/bitnami-docker-phabricator - urls: - - https://kubernetes-charts.storage.googleapis.com/phabricator-0.4.3.tgz - version: 0.4.3 - - created: 2017-02-23T02:33:30.967143259Z - description: Collection of open source web applications that help software companies - build better software. - digest: 657b118031c1513b95268915ef4f68f5453f2b21ca5a919e9a370facb439dfe5 - engine: gotpl - home: https://www.phacility.com/phabricator/ - icon: https://bitnami.com/assets/stacks/phabricator/img/phabricator-stack-110x117.png - keywords: - - phabricator - - http - - https - - web - - application - - collaboration - - project management - - bug tracking - - code review - - wiki - - git - - mercurial - - subversion - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: phabricator - sources: - - https://github.com/bitnami/bitnami-docker-phabricator - urls: - - https://kubernetes-charts.storage.googleapis.com/phabricator-0.4.2.tgz - version: 0.4.2 - - created: 2017-01-21T00:18:31.358403062Z - description: Collection of open source web applications that help software companies - build better software. - digest: 77603dd383c0674e829fa4aa2ca0d33ce61884df6a3ce68f9e165e7802e7eacc - engine: gotpl - home: https://www.phacility.com/phabricator/ - icon: https://bitnami.com/assets/stacks/phabricator/img/phabricator-stack-110x117.png - keywords: - - phabricator - - http - - https - - web - - application - - collaboration - - project management - - bug tracking - - code review - - wiki - - git - - mercurial - - subversion - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: phabricator - sources: - - https://github.com/bitnami/bitnami-docker-phabricator - urls: - - https://kubernetes-charts.storage.googleapis.com/phabricator-0.4.1.tgz - version: 0.4.1 - - created: 2017-01-04T00:48:19.747640048Z - description: Collection of open source web applications that help software companies - build better software. - digest: e4f0f5322bac2a2bed822eb8065eec6e29716310af1623975f1ad0ef2b448c66 - engine: gotpl - home: https://www.phacility.com/phabricator/ - icon: https://bitnami.com/assets/stacks/phabricator/img/phabricator-stack-110x117.png - keywords: - - phabricator - - http - - https - - web - - application - - collaboration - - project management - - bug tracking - - code review - - wiki - - git - - mercurial - - subversion - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: phabricator - sources: - - https://github.com/bitnami/bitnami-docker-phabricator - urls: - - https://kubernetes-charts.storage.googleapis.com/phabricator-0.4.0.tgz - version: 0.4.0 - phpbb: - - created: 2017-03-09T19:33:31.154334362Z - description: Community forum that supports the notion of users and groups, file - attachments, full-text search, notifications and more. - digest: 30732d5c200ef312a50f5a89a222a959c99b0a08af87f0c312c3699bb2c56082 - engine: gotpl - home: https://www.phpbb.com/ - icon: https://bitnami.com/assets/stacks/phpbb/img/phpbb-stack-220x234.png - keywords: - - phpbb - - forum - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: phpbb - sources: - - https://github.com/bitnami/bitnami-docker-phpbb - urls: - - https://kubernetes-charts.storage.googleapis.com/phpbb-0.4.6.tgz - version: 0.4.6 - - created: 2017-03-02T19:33:28.19218227Z - description: Community forum that supports the notion of users and groups, file - attachments, full-text search, notifications and more. - digest: ed994a70f454f325cf677bdcc0a09aa66b01c7343a624a3304b88148eafa0dd4 - engine: gotpl - home: https://www.phpbb.com/ - icon: https://bitnami.com/assets/stacks/phpbb/img/phpbb-stack-220x234.png - keywords: - - phpbb - - forum - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: phpbb - sources: - - https://github.com/bitnami/bitnami-docker-phpbb - urls: - - https://kubernetes-charts.storage.googleapis.com/phpbb-0.4.5.tgz - version: 0.4.5 - - created: 2017-02-23T02:33:30.967854461Z - description: Community forum that supports the notion of users and groups, file - attachments, full-text search, notifications and more. - digest: f50e4b1eb4bf8b2e6815b664e3cfff4bfd7979b650bf1efa709b79c92a8e5dd0 - engine: gotpl - home: https://www.phpbb.com/ - icon: https://bitnami.com/assets/stacks/phpbb/img/phpbb-stack-220x234.png - keywords: - - phpbb - - forum - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: phpbb - sources: - - https://github.com/bitnami/bitnami-docker-phpbb - urls: - - https://kubernetes-charts.storage.googleapis.com/phpbb-0.4.4.tgz - version: 0.4.4 - - created: 2017-02-13T17:03:30.134235119Z - description: Community forum that supports the notion of users and groups, file - attachments, full-text search, notifications and more. - digest: c41705e34490d1941adda128b166ef1a327cceb7a447113d2633652f3c85363a - engine: gotpl - home: https://www.phpbb.com/ - icon: https://bitnami.com/assets/stacks/phpbb/img/phpbb-stack-220x234.png - keywords: - - phpbb - - forum - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: phpbb - sources: - - https://github.com/bitnami/bitnami-docker-phpbb - urls: - - https://kubernetes-charts.storage.googleapis.com/phpbb-0.4.3.tgz - version: 0.4.3 - - created: 2017-02-13T04:18:31.547850917Z - description: Community forum that supports the notion of users and groups, file - attachments, full-text search, notifications and more. - digest: 77f6dfa8f277b003ba0b8e2ca6d046f6b6526ee7db05e304cbb9924c9fd7d194 - engine: gotpl - home: https://www.phpbb.com/ - keywords: - - phpbb - - forum - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: phpbb - sources: - - https://github.com/bitnami/bitnami-docker-phpbb - urls: - - https://kubernetes-charts.storage.googleapis.com/phpbb-0.4.2.tgz - version: 0.4.2 - - created: 2017-01-31T00:03:26.18262303Z - description: Community forum that supports the notion of users and groups, file - attachments, full-text search, notifications and more. - digest: cd6dde525898d91f5f39541ee205e79ba5b8eb7a5b99585141cc88c3a63f5aed - engine: gotpl - home: https://www.phpbb.com/ - keywords: - - phpbb - - forum - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: phpbb - sources: - - https://github.com/bitnami/bitnami-docker-phpbb - urls: - - https://kubernetes-charts.storage.googleapis.com/phpbb-0.4.1.tgz - version: 0.4.1 - - created: 2016-12-09T18:48:20.188802837Z - description: Community forum that supports the notion of users and groups, file - attachments, full-text search, notifications and more. - digest: 7e5e8828fdbba9ebc83c95baac4937e569e881d8b68bc79974a0f5d8a2883e13 - engine: gotpl - home: https://www.phpbb.com/ - keywords: - - phpbb - - forum - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: phpbb - sources: - - https://github.com/bitnami/bitnami-docker-phpbb - urls: - - https://kubernetes-charts.storage.googleapis.com/phpbb-0.4.0.tgz - version: 0.4.0 - postgresql: - - created: 2017-03-09T19:33:31.154763685Z - description: Object-relational database management system (ORDBMS) with an emphasis - on extensibility and on standards-compliance. - digest: 0ca09fbfd539d5258026fcaf7b640f88295271f88773acfa540dcd55cfaf6036 - engine: gotpl - home: https://www.postgresql.org/ - icon: https://www.postgresql.org/media/img/about/press/elephant.png - keywords: - - postgresql - - postgres - - database - - sql - maintainers: - - name: swordbeta - - name: databus23 - name: postgresql - sources: - - https://github.com/kubernetes/charts - - https://github.com/docker-library/postgres - urls: - - https://kubernetes-charts.storage.googleapis.com/postgresql-0.4.0.tgz - version: 0.4.0 - - created: 2017-02-13T21:33:27.762374795Z - description: Object-relational database management system (ORDBMS) with an emphasis - on extensibility and on standards-compliance. - digest: b07b7c12f13731ebc3019c11601351863030ad3933f72fb7925f3c0de39e23f4 - engine: gotpl - home: https://www.postgresql.org/ - icon: https://www.postgresql.org/media/img/about/press/elephant.png - keywords: - - postgresql - - postgres - - database - - sql - maintainers: - - name: swordbeta - - name: databus23 - name: postgresql - sources: - - https://github.com/kubernetes/charts - - https://github.com/docker-library/postgres - urls: - - https://kubernetes-charts.storage.googleapis.com/postgresql-0.3.4.tgz - version: 0.3.4 - - created: 2017-02-13T04:18:31.548242286Z - description: Chart for PostgreSQL - digest: 80685774a539b9efa27ea82337e9dd9fccd436688a84e2609d59a68a336d8f18 - engine: gotpl - home: https://www.postgresql.org/ - keywords: - - postgresql - - postgres - - database - - sql - maintainers: - - name: swordbeta - - name: databus23 - name: postgresql - sources: - - https://github.com/kubernetes/charts - - https://github.com/docker-library/postgres - urls: - - https://kubernetes-charts.storage.googleapis.com/postgresql-0.3.3.tgz - version: 0.3.3 - - created: 2017-02-06T17:48:28.059659169Z - description: Chart for PostgreSQL - digest: d8306a710181a440672795d0b5850e6851ae28b3ecb4cf5f92126c9f533700d5 - engine: gotpl - home: https://www.postgresql.org/ - keywords: - - postgresql - - postgres - - database - - sql - maintainers: - - name: swordbeta - - name: databus23 - name: postgresql - sources: - - https://github.com/kubernetes/charts - - https://github.com/docker-library/postgres - urls: - - https://kubernetes-charts.storage.googleapis.com/postgresql-0.3.2.tgz - version: 0.3.2 - - created: 2017-01-28T00:18:32.756495622Z - description: Chart for PostgreSQL - digest: 7b4e2b838ccb2e96c26f0b18d75b2cba224a634925abacaeee1b053a3db40f72 - engine: gotpl - home: https://www.postgresql.org/ - keywords: - - postgresql - - postgres - - database - - sql - maintainers: - - name: swordbeta - - name: databus23 - name: postgresql - sources: - - https://github.com/kubernetes/charts - - https://github.com/docker-library/postgres - urls: - - https://kubernetes-charts.storage.googleapis.com/postgresql-0.3.1.tgz - version: 0.3.1 - - created: 2017-01-26T17:18:33.808053693Z - description: Chart for PostgreSQL - digest: b8e412ddd2f2648efbaa84f85c924e5b94cba0393fb93ea607fdcab3132b7d2e - engine: gotpl - home: https://www.postgresql.org/ - keywords: - - postgresql - - postgres - - database - - sql - maintainers: - - name: swordbeta - - name: databus23 - name: postgresql - sources: - - https://github.com/kubernetes/charts - - https://github.com/docker-library/postgres - urls: - - https://kubernetes-charts.storage.googleapis.com/postgresql-0.3.0.tgz - version: 0.3.0 - - created: 2016-12-21T18:33:20.280731983Z - description: Chart for PostgreSQL - digest: a0516b4e5b83d9dd4af936859582878683183c6f72e9dddb73c9ff0fd280b972 - engine: gotpl - home: https://www.postgresql.org/ - keywords: - - postgresql - - postgres - - database - - sql - maintainers: - - name: swordbeta - name: postgresql - sources: - - https://github.com/kubernetes/charts - - https://github.com/docker-library/postgres - urls: - - https://kubernetes-charts.storage.googleapis.com/postgresql-0.2.2.tgz - version: 0.2.2 - - created: 2016-12-19T22:48:20.03810957Z - description: Chart for PostgreSQL - digest: 8d79ed44bb8477cdbbf8a3eb5a08eef787a147334b30d35a81f8ee43d07eb9ee - engine: gotpl - home: https://www.postgresql.org/ - keywords: - - postgresql - - postgres - - database - - sql - maintainers: - - name: swordbeta - name: postgresql - sources: - - https://github.com/kubernetes/charts - - https://github.com/docker-library/postgres - urls: - - https://kubernetes-charts.storage.googleapis.com/postgresql-0.2.1.tgz - version: 0.2.1 - - created: 2016-12-05T20:48:21.242600076Z - description: Chart for PostgreSQL - digest: 713d7ee250af7f914188d889ba3cb3065b4c36565b6f68ca8f55cd5340bda213 - engine: gotpl - home: https://www.postgresql.org/ - keywords: - - postgresql - - postgres - - database - - sql - maintainers: - - name: swordbeta - name: postgresql - sources: - - https://github.com/kubernetes/charts - - https://github.com/docker-library/postgres - urls: - - https://kubernetes-charts.storage.googleapis.com/postgresql-0.2.0.tgz - version: 0.2.0 - - created: 2016-11-08T15:03:20.745475633Z - description: Chart for PostgreSQL - digest: c79411d63ad872d0f6d034de9818cef565dbde3ac5f018ee8349305f286031a8 - engine: gotpl - home: https://www.postgresql.org/ - keywords: - - postgresql - - postgres - - database - - sql - maintainers: - - name: swordbeta - name: postgresql - sources: - - https://github.com/kubernetes/charts - - https://github.com/docker-library/postgres - urls: - - https://kubernetes-charts.storage.googleapis.com/postgresql-0.1.1.tgz - version: 0.1.1 - - created: 2016-11-04T14:18:20.014925806Z - description: Chart for PostgreSQL - digest: c984e3efb97da1b841c6a07b1e8fd32638b59de42e5b062690b8c9956be58959 - engine: gotpl - home: https://www.postgresql.org/ - keywords: - - postgresql - - postgres - - database - - sql - maintainers: - - name: swordbeta - name: postgresql - sources: - - https://github.com/kubernetes/charts - - https://github.com/docker-library/postgres - urls: - - https://kubernetes-charts.storage.googleapis.com/postgresql-0.1.0.tgz - version: 0.1.0 - prestashop: - - created: 2017-03-09T19:33:31.155594164Z - description: A popular open source ecommerce solution. Professional tools are - easily accessible to increase online sales including instant guest checkout, - abandoned cart reminders and automated Email marketing. - digest: ff84426385c8abb40d0f4f7e2cfc7fec70b0ae38ca32de832ccbb2b26f74787b - engine: gotpl - home: https://prestashop.com/ - icon: https://bitnami.com/assets/stacks/prestashop/img/prestashop-stack-110x117.png - keywords: - - prestashop - - e-commerce - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: prestashop - sources: - - https://github.com/bitnami/bitnami-docker-prestashop - urls: - - https://kubernetes-charts.storage.googleapis.com/prestashop-0.4.4.tgz - version: 0.4.4 - - created: 2017-03-08T19:03:31.741573757Z - description: A popular open source ecommerce solution. Professional tools are - easily accessible to increase online sales including instant guest checkout, - abandoned cart reminders and automated Email marketing. - digest: 4beeb9d17c713b8065f9167d11672862fe2d1eeb5fded4d4ecd395a379825bbc - engine: gotpl - home: https://prestashop.com/ - icon: https://bitnami.com/assets/stacks/prestashop/img/prestashop-stack-110x117.png - keywords: - - prestashop - - e-commerce - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: prestashop - sources: - - https://github.com/bitnami/bitnami-docker-prestashop - urls: - - https://kubernetes-charts.storage.googleapis.com/prestashop-0.4.3.tgz - version: 0.4.3 - - created: 2017-02-13T17:03:30.136404798Z - description: A popular open source ecommerce solution. Professional tools are - easily accessible to increase online sales including instant guest checkout, - abandoned cart reminders and automated Email marketing. - digest: fd8c2be6fd9348d2c5bda428ac61f0745974ebd7a4b58ad5d975d8d21888f1c4 - engine: gotpl - home: https://prestashop.com/ - icon: https://bitnami.com/assets/stacks/prestashop/img/prestashop-stack-110x117.png - keywords: - - prestashop - - e-commerce - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: prestashop - sources: - - https://github.com/bitnami/bitnami-docker-prestashop - urls: - - https://kubernetes-charts.storage.googleapis.com/prestashop-0.4.2.tgz - version: 0.4.2 - - created: 2017-01-21T00:18:31.360326923Z - description: A popular open source ecommerce solution. Professional tools are - easily accessible to increase online sales including instant guest checkout, - abandoned cart reminders and automated Email marketing. - digest: eba227b32cb9f503c4fd41609d705019372f7936c69febaf2c4200735910e333 - engine: gotpl - home: https://prestashop.com/ - icon: https://bitnami.com/assets/stacks/prestashop/img/prestashop-stack-110x117.png - keywords: - - prestashop - - e-commerce - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: prestashop - sources: - - https://github.com/bitnami/bitnami-docker-prestashop - urls: - - https://kubernetes-charts.storage.googleapis.com/prestashop-0.4.1.tgz - version: 0.4.1 - - created: 2017-01-04T00:48:19.749415831Z - description: A popular open source ecommerce solution. Professional tools are - easily accessible to increase online sales including instant guest checkout, - abandoned cart reminders and automated Email marketing. - digest: dd80da4612c962f5d02e2f52f7e0facf42a661d6d6f5eec36d7a3980e2a685d3 - engine: gotpl - home: https://prestashop.com/ - icon: https://bitnami.com/assets/stacks/prestashop/img/prestashop-stack-110x117.png - keywords: - - prestashop - - e-commerce - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: prestashop - sources: - - https://github.com/bitnami/bitnami-docker-prestashop - urls: - - https://kubernetes-charts.storage.googleapis.com/prestashop-0.4.0.tgz - version: 0.4.0 - prometheus: - - created: 2017-03-09T19:33:31.156293259Z - description: A Prometheus Helm chart for Kubernetes. Prometheus is a monitoring - system and time series database. - digest: 0bbefe8b7732b400320007e4f8898518ffcafd3371114be24ca8ded424fe60b3 - engine: gotpl - home: https://prometheus.io/ - maintainers: - - email: mgoodness@gmail.com - name: Michael Goodness - name: prometheus - sources: - - https://github.com/prometheus/alertmanager - - https://github.com/prometheus/prometheus - urls: - - https://kubernetes-charts.storage.googleapis.com/prometheus-2.0.4.tgz - version: 2.0.4 - - created: 2017-02-13T04:18:31.549501389Z - description: A Prometheus Helm chart for Kubernetes. Prometheus is a monitoring - system and time series database. - digest: 0f54774b8b258a8e126f09a66749b15c0691e0a330b65f397d58418b0fa0210c - engine: gotpl - home: https://prometheus.io/ - maintainers: - - email: mgoodness@gmail.com - name: Michael Goodness - name: prometheus - sources: - - https://github.com/prometheus/alertmanager - - https://github.com/prometheus/prometheus - urls: - - https://kubernetes-charts.storage.googleapis.com/prometheus-2.0.3.tgz - version: 2.0.3 - - created: 2017-02-03T20:18:29.168136057Z - description: A Prometheus Helm chart for Kubernetes. Prometheus is a monitoring - system and time series database. - digest: f1f457be370a944f3c703ceecc35664aa00f7a243730ca9e110bc18f1ed3ab9a - engine: gotpl - home: https://prometheus.io/ - maintainers: - - email: mgoodness@gmail.com - name: Michael Goodness - name: prometheus - sources: - - https://github.com/prometheus/alertmanager - - https://github.com/prometheus/prometheus - urls: - - https://kubernetes-charts.storage.googleapis.com/prometheus-2.0.2.tgz - version: 2.0.2 - - created: 2017-02-01T02:18:29.14318599Z - description: A Prometheus Helm chart for Kubernetes. Prometheus is a monitoring - system and time series database. - digest: eebea40b9e86c6dfb92048b0f63d47b11021ab0df437e2b13bc0fd1fc121e8d6 - engine: gotpl - home: https://prometheus.io/ - maintainers: - - email: mgoodness@gmail.com - name: Michael Goodness - name: prometheus - sources: - - https://github.com/prometheus/alertmanager - - https://github.com/prometheus/prometheus - urls: - - https://kubernetes-charts.storage.googleapis.com/prometheus-2.0.1.tgz - version: 2.0.1 - - created: 2017-01-19T19:18:27.372125459Z - description: A Prometheus Helm chart for Kubernetes. Prometheus is a monitoring - system and time series database. - digest: 0ae9e1c2ec6e3a6e2148f01e174bbbdd02a5797b4136e5de784383bca9bff938 - engine: gotpl - home: https://prometheus.io/ - maintainers: - - email: mgoodness@gmail.com - name: Michael Goodness - name: prometheus - sources: - - https://github.com/prometheus/alertmanager - - https://github.com/prometheus/prometheus - urls: - - https://kubernetes-charts.storage.googleapis.com/prometheus-2.0.0.tgz - version: 2.0.0 - - created: 2017-01-12T02:52:37.843602967Z - description: A Prometheus Helm chart for Kubernetes. Prometheus is a monitoring - system and time series database. - digest: cd8d763bdfe5d7c3c0e9a38f9741a2ef5de1c7c57a0c43a4407e70e2f6232dc9 - engine: gotpl - home: https://prometheus.io/ - maintainers: - - email: mgoodness@gmail.com - name: Michael Goodness - name: prometheus - sources: - - https://github.com/prometheus/alertmanager - - https://github.com/prometheus/prometheus - urls: - - https://kubernetes-charts.storage.googleapis.com/prometheus-1.4.2.tgz - version: 1.4.2 - - created: 2017-01-04T00:48:19.750279814Z - description: A Prometheus Helm chart for Kubernetes. Prometheus is a monitoring - system and time series database. - digest: 7209dafe19488487a8a151129deff24fe174d9734ea2c1629dd52bee183a8ad2 - engine: gotpl - home: https://prometheus.io/ - maintainers: - - email: mgoodness@gmail.com - name: Michael Goodness - name: prometheus - sources: - - https://github.com/prometheus/alertmanager - - https://github.com/prometheus/prometheus - urls: - - https://kubernetes-charts.storage.googleapis.com/prometheus-1.4.1.tgz - version: 1.4.1 - - created: 2016-12-09T18:48:20.189907856Z - description: A Prometheus Helm chart for Kubernetes. Prometheus is a monitoring - system and time series database. - digest: f6b4c948e408471b51ff6361e0d0f5afc801ee8141aae5002111ffbc12c68895 - engine: gotpl - home: https://prometheus.io/ - maintainers: - - email: mgoodness@gmail.com - name: Michael Goodness - name: prometheus - sources: - - https://github.com/prometheus/alertmanager - - https://github.com/prometheus/prometheus - urls: - - https://kubernetes-charts.storage.googleapis.com/prometheus-1.3.1.tgz - version: 1.3.1 - rabbitmq: - - created: 2017-03-09T19:33:31.156719576Z - description: Open source message broker software that implements the Advanced - Message Queuing Protocol (AMQP) - digest: bcfcbfa446f75dc1ca93f9a7d2ccc36731ef41f1dd5615e251344af0d6a1ba83 - engine: gotpl - home: https://www.rabbitmq.com - icon: https://bitnami.com/assets/stacks/rabbitmq/img/rabbitmq-stack-220x234.png - keywords: - - rabbitmq - - message queue - - AMQP - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: rabbitmq - sources: - - https://github.com/bitnami/bitnami-docker-rabbitmq - urls: - - https://kubernetes-charts.storage.googleapis.com/rabbitmq-0.4.3.tgz - version: 0.4.3 - - created: 2017-03-08T19:03:31.743135112Z - description: Open source message broker software that implements the Advanced - Message Queuing Protocol (AMQP) - digest: 7ad8ba0ff9d1b57778ffe60812be9087ad4fac27e8696fad4c9eba9a2529fdba - engine: gotpl - home: https://www.rabbitmq.com - icon: https://bitnami.com/assets/stacks/rabbitmq/img/rabbitmq-stack-220x234.png - keywords: - - rabbitmq - - message queue - - AMQP - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: rabbitmq - sources: - - https://github.com/bitnami/bitnami-docker-rabbitmq - urls: - - https://kubernetes-charts.storage.googleapis.com/rabbitmq-0.4.2.tgz - version: 0.4.2 - - created: 2017-02-13T04:18:31.549853753Z - description: Open source message broker software that implements the Advanced - Message Queuing Protocol (AMQP) - digest: 323ca950152028ecfa421b78ba0b9282265f39b934b07649b239be4d9f2dc10a - engine: gotpl - home: https://www.rabbitmq.com - keywords: - - rabbitmq - - message queue - - AMQP - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: rabbitmq - sources: - - https://github.com/bitnami/bitnami-docker-rabbitmq - urls: - - https://kubernetes-charts.storage.googleapis.com/rabbitmq-0.4.1.tgz - version: 0.4.1 - - created: 2017-01-31T00:03:26.184733426Z - description: Open source message broker software that implements the Advanced - Message Queuing Protocol (AMQP) - digest: 9bd9655f974dc3b2666c141718b65c7786e91c533ffee1784428a6d48cb458ca - engine: gotpl - home: https://www.rabbitmq.com - keywords: - - rabbitmq - - message queue - - AMQP - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: rabbitmq - sources: - - https://github.com/bitnami/bitnami-docker-rabbitmq - urls: - - https://kubernetes-charts.storage.googleapis.com/rabbitmq-0.4.0.tgz - version: 0.4.0 - redis: - - created: 2017-03-09T19:33:31.157679831Z - description: Open source, advanced key-value store. It is often referred to as - a data structure server since keys can contain strings, hashes, lists, sets - and sorted sets. - digest: 83ace7583e93e763b781d74c940d0966d7317d2b1665eaed35be9ca73dcace5e - engine: gotpl - home: http://redis.io/ - icon: https://bitnami.com/assets/stacks/redis/img/redis-stack-220x234.png - keywords: - - redis - - keyvalue - - database - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: redis - sources: - - https://github.com/bitnami/bitnami-docker-redis - urls: - - https://kubernetes-charts.storage.googleapis.com/redis-0.4.6.tgz - version: 0.4.6 - - created: 2017-03-02T19:33:28.196397881Z - description: Open source, advanced key-value store. It is often referred to as - a data structure server since keys can contain strings, hashes, lists, sets - and sorted sets. - digest: 7891aef2647fd00ca93cd6894720a6307d3fdd275f912eb6a05fcbb6b7009c13 - engine: gotpl - home: http://redis.io/ - icon: https://bitnami.com/assets/stacks/redis/img/redis-stack-220x234.png - keywords: - - redis - - keyvalue - - database - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: redis - sources: - - https://github.com/bitnami/bitnami-docker-redis - urls: - - https://kubernetes-charts.storage.googleapis.com/redis-0.4.5.tgz - version: 0.4.5 - - created: 2017-02-13T20:18:28.115940614Z - description: Open source, advanced key-value store. It is often referred to as - a data structure server since keys can contain strings, hashes, lists, sets - and sorted sets. - digest: e8cf2f96a6931397adf372857a6a0da161e7e9eb0cf91f565399d20b26144be1 - engine: gotpl - home: http://redis.io/ - icon: https://bitnami.com/assets/stacks/redis/img/redis-stack-220x234.png - keywords: - - redis - - keyvalue - - database - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: redis - sources: - - https://github.com/bitnami/bitnami-docker-redis - urls: - - https://kubernetes-charts.storage.googleapis.com/redis-0.4.4.tgz - version: 0.4.4 - - created: 2017-02-13T04:18:31.550184203Z - description: Chart for Redis - digest: b4cb9b2e0811a83ce269dc06c25a05fe31deb799018eba418232b2c3f4b18b12 - engine: gotpl - home: http://redis.io/ - keywords: - - redis - - keyvalue - - database - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: redis - sources: - - https://github.com/bitnami/bitnami-docker-redis - urls: - - https://kubernetes-charts.storage.googleapis.com/redis-0.4.3.tgz - version: 0.4.3 - - created: 2017-01-28T02:03:32.495597111Z - description: Chart for Redis - digest: 160dab504021716867790c3b1ea5c6e4afcaf865d9b8569707e123bc4d1536dc - engine: gotpl - home: http://redis.io/ - keywords: - - redis - - keyvalue - - database - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: redis - sources: - - https://github.com/bitnami/bitnami-docker-redis - urls: - - https://kubernetes-charts.storage.googleapis.com/redis-0.4.2.tgz - version: 0.4.2 - - created: 2016-12-09T18:48:20.191261198Z - description: Chart for Redis - digest: 7132d9ddecaf4a890e5177c401228fa031f52e927393063f8d6c5a0881b281a3 - engine: gotpl - home: http://redis.io/ - keywords: - - redis - - keyvalue - - database - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: redis - sources: - - https://github.com/bitnami/bitnami-docker-redis - urls: - - https://kubernetes-charts.storage.googleapis.com/redis-0.4.1.tgz - version: 0.4.1 - - created: 2016-10-31T16:33:19.644247028Z - description: Chart for Redis - digest: cef59b98a3607bf0f40560c724fd36a84e5f29498031a36c0f2f80369c35d9c4 - engine: gotpl - home: http://redis.io/ - keywords: - - redis - - keyvalue - - database - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: redis - sources: - - https://github.com/bitnami/bitnami-docker-redis - urls: - - https://kubernetes-charts.storage.googleapis.com/redis-0.4.0.tgz - version: 0.4.0 - redmine: - - created: 2017-03-09T19:33:31.159281515Z - description: A flexible project management web application. - digest: a21733ee877ad579f8b5be03d5a35008816d64dd56e0ca6482a7c0686fcdfe09 - engine: gotpl - home: http://www.redmine.org/ - icon: https://bitnami.com/assets/stacks/redmine/img/redmine-stack-220x234.png - keywords: - - redmine - - project management - - www - - http - - web - - application - - ruby - - rails - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: redmine - sources: - - https://github.com/bitnami/bitnami-docker-redmine - urls: - - https://kubernetes-charts.storage.googleapis.com/redmine-0.3.11.tgz - version: 0.3.11 - - created: 2017-03-08T19:03:31.745197966Z - description: A flexible project management web application. - digest: 30253b618b47801a076c6cdd8a9ff93e1e4401e0189e88576553802b224e2775 - engine: gotpl - home: http://www.redmine.org/ - icon: https://bitnami.com/assets/stacks/redmine/img/redmine-stack-220x234.png - keywords: - - redmine - - project management - - www - - http - - web - - application - - ruby - - rails - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: redmine - sources: - - https://github.com/bitnami/bitnami-docker-redmine - urls: - - https://kubernetes-charts.storage.googleapis.com/redmine-0.3.10.tgz - version: 0.3.10 - - created: 2017-02-13T21:33:27.767502945Z - description: A flexible project management web application. - digest: aa8a3b1be968e99c7a61ad0b7c1d13934562b9c30eeec0b3a3683063b9d38c7b - engine: gotpl - home: http://www.redmine.org/ - icon: https://bitnami.com/assets/stacks/redmine/img/redmine-stack-220x234.png - keywords: - - redmine - - project management - - www - - http - - web - - application - - ruby - - rails - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: redmine - sources: - - https://github.com/bitnami/bitnami-docker-redmine - urls: - - https://kubernetes-charts.storage.googleapis.com/redmine-0.3.9.tgz - version: 0.3.9 - - created: 2017-02-10T23:18:26.028438027Z - description: A flexible project management web application. - digest: 51f4e834b5d2eb4ab66468e6996419bb20aa4d96ebe35a3663bc8b2c494694e6 - engine: gotpl - home: http://www.redmine.org/ - keywords: - - redmine - - project management - - www - - http - - web - - application - - ruby - - rails - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: redmine - sources: - - https://github.com/bitnami/bitnami-docker-redmine - urls: - - https://kubernetes-charts.storage.googleapis.com/redmine-0.3.8.tgz - version: 0.3.8 - - created: 2017-01-31T00:18:28.517014253Z - description: A flexible project management web application. - digest: d9e7c4c47c853413107330d4fc0ad44e9bc3be90057ca722d28042b73f244fe5 - engine: gotpl - home: http://www.redmine.org/ - keywords: - - redmine - - project management - - www - - http - - web - - application - - ruby - - rails - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: redmine - sources: - - https://github.com/bitnami/bitnami-docker-redmine - urls: - - https://kubernetes-charts.storage.googleapis.com/redmine-0.3.7.tgz - version: 0.3.7 - - created: 2016-12-15T21:18:24.678305914Z - description: A flexible project management web application. - digest: 98d9c8c7f241a9418bed6862f7c82295d5d8158cd1702907ced7150e46530768 - engine: gotpl - home: http://www.redmine.org/ - keywords: - - redmine - - project management - - www - - http - - web - - application - - ruby - - rails - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: redmine - sources: - - https://github.com/bitnami/bitnami-docker-redmine - urls: - - https://kubernetes-charts.storage.googleapis.com/redmine-0.3.6.tgz - version: 0.3.6 - - created: 2016-12-05T21:03:20.228049572Z - description: A flexible project management web application. - digest: ae1c2ced129d05cdae28e1fe9c2bed53ded35cd77d96fc1b26f810d334c601e3 - engine: gotpl - home: http://www.redmine.org/ - keywords: - - redmine - - project management - - www - - http - - web - - application - - ruby - - rails - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: redmine - sources: - - https://github.com/bitnami/bitnami-docker-redmine - urls: - - https://kubernetes-charts.storage.googleapis.com/redmine-0.3.5.tgz - version: 0.3.5 - - created: 2016-11-03T19:33:29.122956769Z - description: A flexible project management web application. - digest: c591dea135ef93f4af1a05961333125167ae551cf2b666363fe76b5a7ad9f806 - engine: gotpl - home: http://www.redmine.org/ - keywords: - - redmine - - project management - - www - - http - - web - - application - - ruby - - rails - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: redmine - sources: - - https://github.com/bitnami/bitnami-docker-redmine - urls: - - https://kubernetes-charts.storage.googleapis.com/redmine-0.3.4.tgz - version: 0.3.4 - - created: 2016-10-21T19:18:18.621573514Z - description: A flexible project management web application. - digest: da6a8cb8c355a93ae11d9312be9eca51966d2288eafe96b6724e6154d000b8c3 - engine: gotpl - home: http://www.redmine.org/ - keywords: - - redmine - - project management - - www - - http - - web - - application - - ruby - - rails - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: redmine - sources: - - https://github.com/bitnami/bitnami-docker-redmine - urls: - - https://kubernetes-charts.storage.googleapis.com/redmine-0.3.3.tgz - version: 0.3.3 - - created: 2016-10-19T00:03:14.035726608Z - description: A flexible project management web application. - digest: 052a0a97ff279db43f06c5ceeabfc5bd26f2e5f4f7ce7c24fdbcf761f97af84e - engine: gotpl - home: http://www.redmine.org/ - keywords: - - redmine - - project management - - www - - http - - web - - application - - ruby - - rails - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: redmine - sources: - - https://github.com/bitnami/bitnami-docker-redmine - urls: - - https://kubernetes-charts.storage.googleapis.com/redmine-0.3.2.tgz - version: 0.3.2 - - created: 2016-10-19T00:03:14.034750035Z - description: A flexible project management web application. - digest: 88cf358644be274866ec5e88199c257e18a35fc8bbe97417658b9a0ea1e4a260 - engine: gotpl - home: http://www.redmine.org/ - keywords: - - redmine - - project management - - www - - http - - web - - application - - ruby - - rails - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: redmine - sources: - - https://github.com/bitnami/bitnami-docker-redmine - urls: - - https://kubernetes-charts.storage.googleapis.com/redmine-0.3.1.tgz - version: 0.3.1 - - created: 2016-10-19T00:03:14.033766322Z - description: A flexible project management web application. - digest: f4815d35cbf9f8bb72c051ee528958b9c6f48b1f3bf8b3fdceaadd90d1b88068 - engine: gotpl - home: http://www.redmine.org/ - keywords: - - redmine - - project management - - www - - http - - web - - application - - ruby - - rails - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: redmine - sources: - - https://github.com/bitnami/bitnami-docker-redmine - urls: - - https://kubernetes-charts.storage.googleapis.com/redmine-0.3.0.tgz - version: 0.3.0 - sapho: - - apiVersion: v1 - created: 2017-03-09T19:33:31.160050402Z - description: A micro application development and integration platform that enables - organizations to create and deliver secure micro applications that tie into - existing business systems and track changes to key business data. - digest: 6c499f9875c07b508d23b081ffd991a5737a0acaf1c75def55dbb2dc07bf40ea - engine: gotpl - home: http://www.sapho.com - icon: https://www.sapho.com/wp-content/uploads/2016/04/sapho-logotype.svg - maintainers: - - email: support@sapho.com - name: Sapho - name: sapho - sources: - - https://bitbucket.org/sapho/ops-docker-tomcat/src - - https://hub.docker.com/r/sapho/ops-docker-tomcat - - https://github.com/kubernetes/charts/tree/master/stable/mysql - urls: - - https://kubernetes-charts.storage.googleapis.com/sapho-0.1.5.tgz - version: 0.1.5 - - apiVersion: v1 - created: 2017-02-13T04:33:52.314506112Z - description: A micro application development and integration platform that enables - organizations to create and deliver secure micro applications that tie into - existing business systems and track changes to key business data. - digest: abe8e15b8e51369d6d05033177efb524139d3352794e201003d2e3fce3d0669d - engine: gotpl - maintainers: - - email: support@sapho.com - name: Sapho - name: sapho - sources: - - https://bitbucket.org/sapho/ops-docker-tomcat/src - - https://hub.docker.com/r/sapho/ops-docker-tomcat - - https://github.com/kubernetes/charts/tree/master/stable/mysql - urls: - - https://kubernetes-charts.storage.googleapis.com/sapho-0.1.4.tgz - version: 0.1.4 - - apiVersion: v1 - created: 2017-01-31T00:18:28.518904Z - description: A micro application development and integration platform that enables - organizations to create and deliver secure micro applications that tie into - existing business systems and track changes to key business data. - digest: d93ff20d61a35de8ab23d5d118c177184a6b8b0578a39ba7d101f818a8742851 - engine: gotpl - maintainers: - - email: support@sapho.com - name: Sapho - name: sapho - sources: - - https://bitbucket.org/sapho/ops-docker-tomcat/src - - https://hub.docker.com/r/sapho/ops-docker-tomcat - - https://github.com/kubernetes/charts/tree/master/stable/mysql - urls: - - https://kubernetes-charts.storage.googleapis.com/sapho-0.1.3.tgz - version: 0.1.3 - sensu: - - apiVersion: v1 - created: 2017-03-09T19:33:31.160768724Z - description: Sensu monitoring framework backed by the Redis transport - digest: bb8781a9693f3b6df9389b3098a6298658127df2e86ad8156788602f541f33c3 - engine: gotpl - home: https://sensuapp.org/ - icon: https://raw.githubusercontent.com/sensu/sensu/master/sensu-logo.png - keywords: - - sensu - - monitoring - maintainers: - - email: shane.starcher@gmail.com - name: Shane Starcher - name: sensu - sources: - - https://github.com/kubernetes/charts - - https://github.com/sstarcher/docker-sensu - - https://github.com/sensu/sensu - urls: - - https://kubernetes-charts.storage.googleapis.com/sensu-0.1.1.tgz - version: 0.1.1 - - apiVersion: v1 - created: 2016-12-21T23:33:22.277352049Z - description: Sensu monitoring framework backed by the Redis transport - digest: 4592387df52c4110a3a313820dbea81e8bf0252845e8c08ad7c71bce9a92831c - engine: gotpl - home: https://sensuapp.org/ - icon: https://raw.githubusercontent.com/sensu/sensu/master/sensu-logo.png - keywords: - - sensu - - monitoring - maintainers: - - email: shane.starcher@gmail.com - name: Shane Starcher - name: sensu - sources: - - https://github.com/kubernetes/charts - - https://github.com/sstarcher/docker-sensu - - https://github.com/sensu/sensu - urls: - - https://kubernetes-charts.storage.googleapis.com/sensu-0.1.0.tgz - version: 0.1.0 - spark: - - created: 2017-03-09T19:33:31.161160193Z - description: Fast and general-purpose cluster computing system. - digest: d37ec7d7530a5836eeeb5ff54110d594efe188ce8175a7c2e3b50e5d9f5af9bc - home: http://spark.apache.org - icon: http://spark.apache.org/images/spark-logo-trademark.png - maintainers: - - email: lachlan.evenson@gmail.com - name: Lachlan Evenson - name: spark - sources: - - https://github.com/kubernetes/kubernetes/tree/master/examples/spark - - https://github.com/apache/spark - urls: - - https://kubernetes-charts.storage.googleapis.com/spark-0.1.4.tgz - version: 0.1.4 - - created: 2017-03-09T19:03:32.57258203Z - description: Fast and general-purpose cluster computing system. - digest: 1cea71eb812c7ea6d566ad34247ad8d1c7b2a460b908748372618a94f035d974 - home: http://spark.apache.org - icon: http://spark.apache.org/images/spark-logo-trademark.png - maintainers: - - email: lachlan.evenson@gmail.com - name: Lachlan Evenson - name: spark - sources: - - https://github.com/kubernetes/kubernetes/tree/master/examples/spark - - https://github.com/apache/spark - urls: - - https://kubernetes-charts.storage.googleapis.com/spark-0.1.3.tgz - version: 0.1.3 - - created: 2017-02-13T04:33:52.317122021Z - description: A Apache Spark Helm chart for Kubernetes. Apache Spark is a fast - and general-purpose cluster computing system - digest: fd5559299116691e56c85f60be46e3b1d1a647973f4dfd6c0d87d0b0274a349b - home: http://spark.apache.org/ - maintainers: - - email: lachlan.evenson@gmail.com - name: Lachlan Evenson - name: spark - sources: - - https://github.com/kubernetes/kubernetes/tree/master/examples/spark - - https://github.com/apache/spark - urls: - - https://kubernetes-charts.storage.googleapis.com/spark-0.1.2.tgz - version: 0.1.2 - - created: 2017-01-27T21:48:32.088621169Z - description: A Apache Spark Helm chart for Kubernetes. Apache Spark is a fast - and general-purpose cluster computing system - digest: 884cc07e4710011476db63017b48504cc00b00faf461cdfe83aac40f0fd33e49 - home: http://spark.apache.org/ - maintainers: - - email: lachlan.evenson@gmail.com - name: Lachlan Evenson - name: spark - sources: - - https://github.com/kubernetes/kubernetes/tree/master/examples/spark - - https://github.com/apache/spark - urls: - - https://kubernetes-charts.storage.googleapis.com/spark-0.1.1.tgz - version: 0.1.1 - spartakus: - - created: 2017-03-09T19:33:31.161451869Z - description: Collect information about Kubernetes clusters to help improve the - project. - digest: 7db8a6ac7280c8d112b533b2653cfa8ed43d8517a4cf31d28e24d5761d8c6b80 - engine: gotpl - maintainers: - - email: mgoodness@gmail.com - name: Michael Goodness - name: spartakus - sources: - - https://github.com/kubernetes-incubator/spartakus - urls: - - https://kubernetes-charts.storage.googleapis.com/spartakus-1.1.1.tgz - version: 1.1.1 - - created: 2017-03-02T18:48:30.451198217Z - description: Collect information about Kubernetes clusters to help improve the - project. - digest: 84720960919addcce5b608717eca0218b7f6cd9edbf77a52ddc0747e51037936 - engine: gotpl - maintainers: - - email: mgoodness@gmail.com - name: Michael Goodness - name: spartakus - sources: - - https://github.com/kubernetes-incubator/spartakus - urls: - - https://kubernetes-charts.storage.googleapis.com/spartakus-1.1.0.tgz - version: 1.1.0 - - created: 2017-02-13T17:03:30.144830851Z - description: A Spartakus Helm chart for Kubernetes. Spartakus aims to collect - information about Kubernetes clusters. - digest: 1c202628cd57e01cb324ee6e9457b52d1e1a5fd665f99d4bb25bd17c92c438e9 - engine: gotpl - maintainers: - - email: mgoodness@gmail.com - name: Michael Goodness - name: spartakus - sources: - - https://github.com/kubernetes-incubator/spartakus - urls: - - https://kubernetes-charts.storage.googleapis.com/spartakus-1.0.0.tgz - version: 1.0.0 - spinnaker: - - apiVersion: v1 - created: 2017-03-09T19:33:31.163079351Z - description: Open source, multi-cloud continuous delivery platform for releasing - software changes with high velocity and confidence. - digest: e0876be25e058215bfaa72281a05cc17422f914681642891dfb34412442c116f - home: http://spinnaker.io/ - icon: https://pbs.twimg.com/profile_images/669205226994319362/O7OjwPrh_400x400.png - maintainers: - - email: viglesias@google.com - name: Vic Iglesias - name: spinnaker - sources: - - https://github.com/spinnaker - - https://github.com/viglesiasce/images - urls: - - https://kubernetes-charts.storage.googleapis.com/spinnaker-0.1.1.tgz - version: 0.1.1 - - apiVersion: v1 - created: 2017-02-13T20:48:27.29021219Z - description: A Helm chart for Kubernetes - digest: cc44efeace9d645b2ea824b017986d86b6b3a50fcd94e86199e0e6849eb02731 - home: http://spinnaker.io/ - maintainers: - - email: viglesias@google.com - name: Vic Iglesias - name: spinnaker - sources: - - https://github.com/spinnaker - - https://github.com/viglesiasce/images - urls: - - https://kubernetes-charts.storage.googleapis.com/spinnaker-0.1.0.tgz - version: 0.1.0 - sumokube: - - created: 2017-03-09T19:33:31.163986922Z - description: Sumologic Log Collector - digest: 2f4f5cfc4c1d40cd24085497041fd701f72d4f15cb55241bfb998da82b05c7b9 - keywords: - - monitoring - - logging - maintainers: - - email: jdumars+github@gmail.com - name: Jason DuMars - - email: knoxville+github@gmail.com - name: Sean Knox - name: sumokube - sources: - - https://github.com/SumoLogic/sumologic-collector-docker - urls: - - https://kubernetes-charts.storage.googleapis.com/sumokube-0.1.1.tgz - version: 0.1.1 - - created: 2017-01-27T21:48:32.092039665Z - description: Sumologic Log Collector - digest: 5b173be9b7dc0e1d48a7cd11015b9c405666a40420a290c5fb54e4f8718b4fc0 - keywords: - - monitoring - - logging - maintainers: - - email: jdumars+github@gmail.com - name: Jason DuMars - - email: knoxville+github@gmail.com - name: Sean Knox - name: sumokube - sources: - - https://github.com/SumoLogic/sumologic-collector-docker - urls: - - https://kubernetes-charts.storage.googleapis.com/sumokube-0.1.0.tgz - version: 0.1.0 - telegraf: - - created: 2017-03-09T19:33:31.164563903Z - description: Telegraf is an agent written in Go for collecting, processing, aggregating, - and writing metrics. - digest: 850b4b7543a3dd7f5d33ba65d9098fe4f361981f49452a40ce9774850b4285e3 - engine: gotpl - home: https://www.influxdata.com/time-series-platform/telegraf/ - keywords: - - telegraf - - collector - - timeseries - - influxdata - maintainers: - - email: jack@influxdb.com - name: Jack Zampolin - name: telegraf - urls: - - https://kubernetes-charts.storage.googleapis.com/telegraf-0.2.0.tgz - version: 0.2.0 - - created: 2017-02-13T21:48:52.617397285Z - description: Telegraf is an agent written in Go for collecting, processing, aggregating, - and writing metrics. - digest: 1f74106455808d45d16742f6d7d02164eb328a40dd9699dfa4511b33efaf14e9 - engine: gotpl - home: https://www.influxdata.com/time-series-platform/telegraf/ - keywords: - - telegraf - - collector - - timeseries - - influxdata - maintainers: - - email: jack@influxdb.com - name: Jack Zampolin - name: telegraf - urls: - - https://kubernetes-charts.storage.googleapis.com/telegraf-0.1.1.tgz - version: 0.1.1 - - created: 2017-02-11T03:18:26.54678474Z - description: Chart for Telegraf Kubernetes deployments - digest: 52fa68fd948ee675a5d1a5ffff22d98e293ee37569a8fa56a4022f51e9507184 - engine: gotpl - home: https://www.influxdata.com/time-series-platform/telegraf/ - keywords: - - telegraf - - collector - - timeseries - - influxdata - maintainers: - - email: jack@influxdb.com - name: Jack Zampolin - name: telegraf - urls: - - https://kubernetes-charts.storage.googleapis.com/telegraf-0.1.0.tgz - version: 0.1.0 - testlink: - - created: 2017-03-09T19:33:31.165308586Z - description: Web-based test management system that facilitates software quality - assurance. - digest: 08f7104671364ff6bd43270659733ea97a4adc06181f8a5c3027ac3d0078e51c - engine: gotpl - home: http://www.testlink.org/ - icon: https://bitnami.com/assets/stacks/testlink/img/testlink-stack-220x234.png - keywords: - - testlink - - testing - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: testlink - sources: - - https://github.com/bitnami/bitnami-docker-testlink - urls: - - https://kubernetes-charts.storage.googleapis.com/testlink-0.4.5.tgz - version: 0.4.5 - - created: 2017-03-08T19:03:31.751542723Z - description: Web-based test management system that facilitates software quality - assurance. - digest: 7861921ff159f1be6834acfc3e5c139382a8c6461b20a45c4b1561985827c865 - engine: gotpl - home: http://www.testlink.org/ - icon: https://bitnami.com/assets/stacks/testlink/img/testlink-stack-220x234.png - keywords: - - testlink - - testing - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: testlink - sources: - - https://github.com/bitnami/bitnami-docker-testlink - urls: - - https://kubernetes-charts.storage.googleapis.com/testlink-0.4.4.tgz - version: 0.4.4 - - created: 2017-02-11T03:18:26.547570032Z - description: Web-based test management system that facilitates software quality - assurance. - digest: 2c7188d5f1a9fb03c71b2e2d693dfbef9a739ae8889d9eb38854900cf066077b - engine: gotpl - home: http://www.testlink.org/ - keywords: - - testlink - - testing - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: testlink - sources: - - https://github.com/bitnami/bitnami-docker-testlink - urls: - - https://kubernetes-charts.storage.googleapis.com/testlink-0.4.3.tgz - version: 0.4.3 - - created: 2017-01-21T00:18:31.369288453Z - description: Web-based test management system that facilitates software quality - assurance. - digest: 78f6a9cfe1843b8ea99489d8b4c801f84271ee25827ad044989ed0df21ac086b - engine: gotpl - home: http://www.testlink.org/ - keywords: - - testlink - - testing - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: testlink - sources: - - https://github.com/bitnami/bitnami-docker-testlink - urls: - - https://kubernetes-charts.storage.googleapis.com/testlink-0.4.2.tgz - version: 0.4.2 - - created: 2016-12-15T21:18:24.679744308Z - description: Web-based test management system that facilitates software quality - assurance. - digest: 9edb2777c6db4794885a2c7531a28436774edc248aad3a26007bca4076058143 - engine: gotpl - home: http://www.testlink.org/ - keywords: - - testlink - - testing - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: testlink - sources: - - https://github.com/bitnami/bitnami-docker-testlink - urls: - - https://kubernetes-charts.storage.googleapis.com/testlink-0.4.1.tgz - version: 0.4.1 - - created: 2016-12-09T18:48:20.193151472Z - description: Web-based test management system that facilitates software quality - assurance. - digest: df216a31082cdf15867ee9a17b107e4006e9e0a20b79425889b695c4c46fb0c1 - engine: gotpl - home: http://www.testlink.org/ - keywords: - - testlink - - testing - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: testlink - sources: - - https://github.com/bitnami/bitnami-docker-testlink - urls: - - https://kubernetes-charts.storage.googleapis.com/testlink-0.4.0.tgz - version: 0.4.0 - traefik: - - apiVersion: v1 - created: 2017-03-09T19:33:31.165964362Z - description: A Traefik based Kubernetes ingress controller with Let's Encrypt - support - digest: 9aa401aee6da3b4afc5cc3f8be7ff9f74bf424743ca72a7a7b91a7105d9781b6 - engine: gotpl - home: http://traefik.io/ - icon: http://traefik.io/traefik.logo.png - keywords: - - traefik - - ingress - - acme - - letsencrypt - maintainers: - - email: engineering@deis.com - name: Deis - name: traefik - sources: - - https://github.com/containous/traefik - - https://github.com/krancour/charts/tree/master/traefik - urls: - - https://kubernetes-charts.storage.googleapis.com/traefik-1.1.2-g.tgz - version: 1.1.2-g - - apiVersion: v1 - created: 2017-02-27T17:18:28.185706737Z - description: A Traefik based Kubernetes ingress controller with Let's Encrypt - support - digest: 5bb7b98b962098808e3b73f604592bc4c6e6245e0074fa0c99308fc04bf766b8 - engine: gotpl - home: http://traefik.io/ - icon: http://traefik.io/traefik.logo.png - keywords: - - traefik - - ingress - - acme - - letsencrypt - maintainers: - - email: engineering@deis.com - name: Deis - name: traefik - sources: - - https://github.com/containous/traefik - - https://github.com/krancour/charts/tree/master/traefik - urls: - - https://kubernetes-charts.storage.googleapis.com/traefik-1.1.2-f.tgz - version: 1.1.2-f - - apiVersion: v1 - created: 2017-02-13T22:18:28.973464794Z - description: A Traefik based Kubernetes ingress controller with Let's Encrypt - support - digest: ae467c4bee7364d17de2583d33031d0eeb2ef55e7962a7db0245d692e65479e1 - engine: gotpl - home: http://traefik.io/ - icon: http://traefik.io/traefik.logo.png - keywords: - - traefik - - ingress - - acme - - letsencrypt - maintainers: - - email: engineering@deis.com - name: Deis - name: traefik - sources: - - https://github.com/containous/traefik - - https://github.com/krancour/charts/tree/master/traefik - urls: - - https://kubernetes-charts.storage.googleapis.com/traefik-1.1.2-e.tgz - version: 1.1.2-e - - apiVersion: v1 - created: 2017-02-13T21:33:27.776086791Z - description: A Traefik based Kubernetes ingress controller with Let's Encrypt - support - digest: 399d74bcd8ab26f2de10894d83b59d413752797789b9fe9568e17f7b564f5f75 - engine: gotpl - home: http://traefik.io/ - icon: http://traefik.io/traefik.logo.png - keywords: - - traefik - - ingress - - acme - - letsencrypt - maintainers: - - email: engineering@deis.com - name: Deis - name: traefik - sources: - - https://github.com/containous/traefik - - https://github.com/krancour/charts/tree/master/traefik - urls: - - https://kubernetes-charts.storage.googleapis.com/traefik-1.1.2-d.tgz - version: 1.1.2-d - - apiVersion: v1 - created: 2017-02-03T19:33:30.806247527Z - description: A Traefik based Kubernetes ingress controller with Let's Encrypt - support - digest: e225511060509d9cf3e38eaafd93af9ee994f8ed99c40a25500f4a1d06851841 - engine: gotpl - home: http://traefik.io/ - icon: http://traefik.io/traefik.logo.png - keywords: - - traefik - - ingress - - acme - - letsencrypt - maintainers: - - email: engineering@deis.com - name: Deis - name: traefik - sources: - - https://github.com/containous/traefik - - https://github.com/krancour/charts/tree/master/traefik - urls: - - https://kubernetes-charts.storage.googleapis.com/traefik-1.1.2-c.tgz - version: 1.1.2-c - - apiVersion: v1 - created: 2017-02-01T02:18:29.153394653Z - description: A Traefik based Kubernetes ingress controller with Let's Encrypt - support - digest: 9cc02b2e43c901c92aa560b4f85e325f04635d052035418f3b27b06bdd571ae9 - engine: gotpl - home: http://traefik.io/ - icon: http://traefik.io/traefik.logo.png - keywords: - - traefik - - ingress - - acme - - letsencrypt - maintainers: - - email: engineering@deis.com - name: Deis - name: traefik - sources: - - https://github.com/containous/traefik - - https://github.com/krancour/charts/tree/master/traefik - urls: - - https://kubernetes-charts.storage.googleapis.com/traefik-1.1.2-b.tgz - version: 1.1.2-b - - apiVersion: v1 - created: 2017-01-28T00:18:32.767314879Z - description: A Traefik based Kubernetes ingress controller with Let's Encrypt - support - digest: 9bae960964d5062dd4c412ad7daf6f6f9e8dd070264aa3f44c831c817fc26b7d - engine: gotpl - home: http://traefik.io/ - icon: http://traefik.io/traefik.logo.png - keywords: - - traefik - - ingress - - acme - - letsencrypt - maintainers: - - email: engineering@deis.com - name: Deis - name: traefik - sources: - - https://github.com/containous/traefik - - https://github.com/krancour/charts/tree/master/traefik - urls: - - https://kubernetes-charts.storage.googleapis.com/traefik-1.1.2-a.tgz - version: 1.1.2-a - - apiVersion: v1 - created: 2017-01-03T17:48:20.753425335Z - description: A Traefik based Kubernetes ingress controller with Let's Encrypt - support - digest: e8ab4576505091785b27084e4f4e4f02f1ee3f1744d9842ec086457baabe8b85 - engine: gotpl - home: http://traefik.io/ - icon: http://traefik.io/traefik.logo.png - keywords: - - traefik - - ingress - - acme - - letsencrypt - maintainers: - - email: engineering@deis.com - name: Deis - name: traefik - sources: - - https://github.com/containous/traefik - - https://github.com/krancour/charts/tree/master/traefik - urls: - - https://kubernetes-charts.storage.googleapis.com/traefik-1.1.1-a.tgz - version: 1.1.1-a - - apiVersion: v1 - created: 2016-11-23T00:33:20.024479934Z - description: A Traefik based Kubernetes ingress controller with Let's Encrypt - support - digest: 6664534aab03a22531602a415ca14a72e932b08fe1feab8866cc55ba18b77dc8 - engine: gotpl - home: http://traefik.io/ - icon: http://traefik.io/traefik.logo.png - keywords: - - traefik - - ingress - - acme - - letsencrypt - maintainers: - - email: engineering@deis.com - name: Deis - name: traefik - sources: - - https://github.com/containous/traefik - - https://github.com/krancour/charts/tree/master/traefik - urls: - - https://kubernetes-charts.storage.googleapis.com/traefik-1.1.0-rc3-a.tgz - version: 1.1.0-rc3-a - - apiVersion: v1 - created: 2016-11-30T22:03:20.721274307Z - description: A Traefik based Kubernetes ingress controller with Let's Encrypt - support - digest: 2828d7284839baee1fb36f823ce4e2574a4b675b7f4f74e921a4685f4cee28c2 - engine: gotpl - home: http://traefik.io/ - icon: http://traefik.io/traefik.logo.png - keywords: - - traefik - - ingress - - acme - - letsencrypt - maintainers: - - email: engineering@deis.com - name: Deis - name: traefik - sources: - - https://github.com/containous/traefik - - https://github.com/krancour/charts/tree/master/traefik - urls: - - https://kubernetes-charts.storage.googleapis.com/traefik-1.1.0-a.tgz - version: 1.1.0-a - uchiwa: - - apiVersion: v1 - created: 2017-03-09T19:33:31.166949849Z - description: Dashboard for the Sensu monitoring framework - digest: 9bee21cd61e56e08f58c1ba130e0a4af1a1d62a8d7921f9408509bd501494403 - engine: gotpl - home: https://uchiwa.io/ - icon: https://uchiwa.io/img/favicon.png - keywords: - - uchiwa - - sensu - - monitoring - maintainers: - - email: shane.starcher@gmail.com - name: Shane Starcher - name: uchiwa - sources: - - https://github.com/kubernetes/charts - - https://github.com/sstarcher/docker-uchiwa - - https://github.com/sensu/uchiwa - urls: - - https://kubernetes-charts.storage.googleapis.com/uchiwa-0.2.0.tgz - version: 0.2.0 - - apiVersion: v1 - created: 2017-01-18T23:03:27.817024829Z - description: Dashboard for the Sensu monitoring framework - digest: 868d7e58adb2fead4ed9e4be17e2017c2d1c55d265b2a579625e787e6f15f4d5 - engine: gotpl - home: https://uchiwa.io/ - icon: https://uchiwa.io/img/favicon.png - keywords: - - uchiwa - - sensu - - monitoring - maintainers: - - email: shane.starcher@gmail.com - name: Shane Starcher - name: uchiwa - sources: - - https://github.com/kubernetes/charts - - https://github.com/sstarcher/docker-uchiwa - - https://github.com/sensu/uchiwa - urls: - - https://kubernetes-charts.storage.googleapis.com/uchiwa-0.1.0.tgz - version: 0.1.0 - wordpress: - - created: 2017-03-09T19:33:31.168968362Z - description: Web publishing platform for building blogs and websites. - digest: 306220e3c19f1360644eade517a2a8ca422e8f9ec6ea9c65181ce8fc9797772f - engine: gotpl - home: http://www.wordpress.com/ - icon: https://bitnami.com/assets/stacks/wordpress/img/wordpress-stack-220x234.png - keywords: - - wordpress - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: wordpress - sources: - - https://github.com/bitnami/bitnami-docker-wordpress - urls: - - https://kubernetes-charts.storage.googleapis.com/wordpress-0.4.3.tgz - version: 0.4.3 - - created: 2017-03-08T19:03:31.755452536Z - description: Web publishing platform for building blogs and websites. - digest: 0689b452d3c9a9bee6e5c84b48172c68de6eedc253223b96ab6500ad88a5de40 - engine: gotpl - home: http://www.wordpress.com/ - icon: https://bitnami.com/assets/stacks/wordpress/img/wordpress-stack-220x234.png - keywords: - - wordpress - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: wordpress - sources: - - https://github.com/bitnami/bitnami-docker-wordpress - urls: - - https://kubernetes-charts.storage.googleapis.com/wordpress-0.4.2.tgz - version: 0.4.2 - - created: 2017-02-13T04:33:52.323397093Z - description: Web publishing platform for building blogs and websites. - digest: 0fc412dea55069b368183afefb74342001a91a7f3a0e9126a921581d7740d61c - engine: gotpl - home: http://www.wordpress.com/ - keywords: - - wordpress - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: wordpress - sources: - - https://github.com/bitnami/bitnami-docker-wordpress - urls: - - https://kubernetes-charts.storage.googleapis.com/wordpress-0.4.1.tgz - version: 0.4.1 - - created: 2017-01-28T00:18:32.769124587Z - description: Web publishing platform for building blogs and websites. - digest: 2f4a5d65350b36a6481c4c3d619f713835f091821d3f56c38c718061628ff712 - engine: gotpl - home: http://www.wordpress.com/ - keywords: - - wordpress - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: wordpress - sources: - - https://github.com/bitnami/bitnami-docker-wordpress - urls: - - https://kubernetes-charts.storage.googleapis.com/wordpress-0.4.0.tgz - version: 0.4.0 - - created: 2017-01-04T00:48:19.757447587Z - description: Web publishing platform for building blogs and websites. - digest: f62b6f1728a33c5d59dd24dc6fb984f13d2dffac2bc6eec01724501e66ffc6a0 - engine: gotpl - home: http://www.wordpress.com/ - keywords: - - wordpress - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: wordpress - sources: - - https://github.com/bitnami/bitnami-docker-wordpress - urls: - - https://kubernetes-charts.storage.googleapis.com/wordpress-0.3.4.tgz - version: 0.3.4 - - created: 2016-12-15T00:48:24.021239603Z - description: Web publishing platform for building blogs and websites. - digest: 0c86b7cec5877a3c3c55d919b2f02ae52340c953afd9dc541ae0280bc23fe9aa - engine: gotpl - home: http://www.wordpress.com/ - keywords: - - wordpress - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: wordpress - sources: - - https://github.com/bitnami/bitnami-docker-wordpress - urls: - - https://kubernetes-charts.storage.googleapis.com/wordpress-0.3.3.tgz - version: 0.3.3 - - created: 2016-12-09T18:48:20.19465733Z - description: Web publishing platform for building blogs and websites. - digest: 589e49370cb09f6d9ddb3ceba3b21f52697570cd4b40aff891a660c5daaa9bec - engine: gotpl - home: http://www.wordpress.com/ - keywords: - - wordpress - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: wordpress - sources: - - https://github.com/bitnami/bitnami-docker-wordpress - urls: - - https://kubernetes-charts.storage.googleapis.com/wordpress-0.3.2.tgz - version: 0.3.2 - - created: 2016-10-21T19:18:18.622178432Z - description: Web publishing platform for building blogs and websites. - digest: e70a072dcbb7252becc8899f54de8cb5977ceaea47197919c3990a6896adc350 - engine: gotpl - home: http://www.wordpress.com/ - keywords: - - wordpress - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: wordpress - sources: - - https://github.com/bitnami/bitnami-docker-wordpress - urls: - - https://kubernetes-charts.storage.googleapis.com/wordpress-0.3.1.tgz - version: 0.3.1 - - created: 2016-10-19T00:03:14.037631856Z - description: Web publishing platform for building blogs and websites. - digest: 1c44515f02fb34b722dce1d8cf5fed0dfbbd2f8c03d63b335211b7bcb12b6dea - engine: gotpl - home: http://www.wordpress.com/ - keywords: - - wordpress - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: wordpress - sources: - - https://github.com/bitnami/bitnami-docker-wordpress - urls: - - https://kubernetes-charts.storage.googleapis.com/wordpress-0.3.0.tgz - version: 0.3.0 -generated: 2017-03-09T19:33:31.126146665Z diff --git a/deploy/helm/individual/apigateway/charts/.helm/repository/local/index.yaml b/deploy/helm/individual/apigateway/charts/.helm/repository/local/index.yaml deleted file mode 100644 index 48c09c7..0000000 --- a/deploy/helm/individual/apigateway/charts/.helm/repository/local/index.yaml +++ /dev/null @@ -1,3 +0,0 @@ -apiVersion: v1 -entries: {} -generated: 2017-03-10T12:31:05.4896309+05:30 diff --git a/deploy/helm/individual/apigateway/charts/.helm/repository/repositories.yaml b/deploy/helm/individual/apigateway/charts/.helm/repository/repositories.yaml deleted file mode 100644 index 8f305a2..0000000 --- a/deploy/helm/individual/apigateway/charts/.helm/repository/repositories.yaml +++ /dev/null @@ -1,15 +0,0 @@ -apiVersion: v1 -generated: 2017-03-10T12:31:04.5110303+05:30 -repositories: -- caFile: "" - cache: .helm\repository\cache\stable-index.yaml - certFile: "" - keyFile: "" - name: stable - url: https://kubernetes-charts.storage.googleapis.com -- caFile: "" - cache: .helm\repository\cache\local-index.yaml - certFile: "" - keyFile: "" - name: local - url: http://127.0.0.1:8879/charts diff --git a/deploy/helm/individual/apigateway/templates/deployment.yaml b/deploy/helm/individual/apigateway/templates/deployment.yaml deleted file mode 100644 index b9b8f2e..0000000 --- a/deploy/helm/individual/apigateway/templates/deployment.yaml +++ /dev/null @@ -1,23 +0,0 @@ -apiVersion: extensions/v1beta1 -kind: Deployment -metadata: - name: {{ template "fullname" . }} - labels: - chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" -spec: - replicas: {{ .Values.replicaCount }} - template: - metadata: - labels: - app: {{ template "fullname" . }} - tier: {{ .Values.labels.tier }} - link: {{ .Values.labels.link }} - spec: - containers: - - name: {{ .Chart.Name }} - image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}" - imagePullPolicy: {{ .Values.image.pullPolicy }} - ports: - - containerPort: {{ .Values.service.internalPort }} - imagePullSecrets: - - name: {{ .Values.service.imagePullSecrets }} \ No newline at end of file diff --git a/deploy/helm/individual/apigateway/templates/service.yaml b/deploy/helm/individual/apigateway/templates/service.yaml deleted file mode 100644 index 3645dcf..0000000 --- a/deploy/helm/individual/apigateway/templates/service.yaml +++ /dev/null @@ -1,17 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: {{ template "fullname" . }} - labels: - chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" -spec: - type: {{ .Values.service.type }} - ports: - - port: {{ .Values.service.externalPort }} - targetPort: {{ .Values.service.internalPort }} - protocol: TCP - name: {{ .Values.service.name }} - selector: - app: {{ template "fullname" . }} - tier: {{ .Values.labels.tier }} - link: {{ .Values.labels.link }} diff --git a/deploy/helm/individual/apigateway/values.yaml b/deploy/helm/individual/apigateway/values.yaml deleted file mode 100644 index 29b2786..0000000 --- a/deploy/helm/individual/apigateway/values.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Default values for PartsUnlimitedMrp. -# This is a YAML-formatted file. -# Declare variables to be passed into your templates. -replicaCount: 1 -image: - repository: puregistry-on.azurecr.io/apigateway - tag: latest - pullPolicy: IfNotPresent -labels: - tier: backend - link: PartsUnlimitedMrp -service: - name: apigateway-service - type: ClusterIP - externalPort: 9020 - internalPort: 9020 - imagePullSecrets: puregistrykey -resources: - limits: - cpu: 100m - memory: 128Mi - requests: - cpu: 100m - memory: 128Mi - diff --git a/deploy/helm/individual/catalogservice/Chart.yaml b/deploy/helm/individual/catalogservice/Chart.yaml deleted file mode 100644 index 6b7e617..0000000 --- a/deploy/helm/individual/catalogservice/Chart.yaml +++ /dev/null @@ -1,9 +0,0 @@ -apiVersion: v1 -description: A Helm chart for Catalog Service -name: catalogservice -version: 0.1.0 -sources: -- https://dxdevop.visualstudio.com/mrpmicro/_git/code -maintainers: -- name: Parts Unlimited MRP GitHub Team -engine: gotpl diff --git a/deploy/helm/individual/catalogservice/templates/deployment.yaml b/deploy/helm/individual/catalogservice/templates/deployment.yaml deleted file mode 100644 index 1b10755..0000000 --- a/deploy/helm/individual/catalogservice/templates/deployment.yaml +++ /dev/null @@ -1,24 +0,0 @@ -apiVersion: {{ .Values.apiversion.deployment }} -kind: Deployment -metadata: - name: {{ template "fullname" . }} - labels: - chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" -spec: - replicas: {{ .Values.replicaCount }} - template: - metadata: - labels: - app: {{ template "fullname" . }} - tier: {{ .Values.labels.tier }} - link: {{ .Values.labels.link }} - spec: - containers: - - name: {{ .Chart.Name }} - image: "{{ .Values.image.repository }}/{{ .Values.image.name }}:{{ .Values.image.tag }}" - imagePullPolicy: {{ .Values.image.pullPolicy }} - ports: - - name: {{ .Values.service.portName }} - containerPort: {{ .Values.service.internalPort }} - imagePullSecrets: - - name: {{ .Values.service.imagePullSecrets }} diff --git a/deploy/helm/individual/catalogservice/values.yaml b/deploy/helm/individual/catalogservice/values.yaml deleted file mode 100644 index 17afa07..0000000 --- a/deploy/helm/individual/catalogservice/values.yaml +++ /dev/null @@ -1,29 +0,0 @@ -# Default values for orderservice. -# This is a YAML-formatted file. -# Declare variables to be passed into your templates. -replicaCount: 1 -apiversion: - deployment: apps/v1beta1 # for versions 1.8+ use apps/v1beta2 -image: - repository: mypumrpmicro.azurecr.io/pumrp - name: pumrp-catalog - tag: latest - pullPolicy: Always -labels: - tier: backend - link: PartsUnlimitedMrp -service: - name: catalog-service - type: ClusterIP - portName: http - externalPort: 80 - internalPort: 8080 - imagePullSecrets: puregistrykey -resources: - limits: - cpu: 100m - memory: 128Mi - requests: - cpu: 100m - memory: 128Mi - diff --git a/deploy/helm/individual/dealerservice/Chart.yaml b/deploy/helm/individual/dealerservice/Chart.yaml deleted file mode 100644 index ef1e8a2..0000000 --- a/deploy/helm/individual/dealerservice/Chart.yaml +++ /dev/null @@ -1,9 +0,0 @@ -apiVersion: v1 -description: A Helm chart for Dealer Service -name: dealerservice -version: 0.1.0 -sources: -- https://dxdevop.visualstudio.com/mrpmicro/_git/code -maintainers: -- name: Parts Unlimited MRP GitHub Team -engine: gotpl diff --git a/deploy/helm/individual/dealerservice/templates/NOTES.txt b/deploy/helm/individual/dealerservice/templates/NOTES.txt deleted file mode 100644 index 2e5d6bc..0000000 --- a/deploy/helm/individual/dealerservice/templates/NOTES.txt +++ /dev/null @@ -1,15 +0,0 @@ -1. Get the application URL by running these commands: -{{- if contains "NodePort" .Values.service.type }} - export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ template "fullname" . }}) - export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}") - echo http://$NODE_IP:$NODE_PORT/login -{{- else if contains "LoadBalancer" .Values.service.type }} - NOTE: It may take a few minutes for the LoadBalancer IP to be available. - You can watch the status of by running 'kubectl get svc -w {{ template "fullname" . }}' - export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ template "fullname" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}') - echo http://$SERVICE_IP:{{ .Values.service.externalPort }} -{{- else if contains "ClusterIP" .Values.service.type }} - export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app={{ template "fullname" . }}" -o jsonpath="{.items[0].metadata.name}") - echo "Visit http://127.0.0.1:8080 to use your application" - kubectl port-forward $POD_NAME 8080:{{ .Values.service.internalPort }} -{{- end }} diff --git a/deploy/helm/individual/dealerservice/templates/service.yaml b/deploy/helm/individual/dealerservice/templates/service.yaml deleted file mode 100644 index ec0b65b..0000000 --- a/deploy/helm/individual/dealerservice/templates/service.yaml +++ /dev/null @@ -1,17 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: {{ template "fullname" . }} - labels: - chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" -spec: - type: {{ .Values.service.type }} - ports: - - port: {{ .Values.service.externalPort }} - targetPort: {{ .Values.service.portName }} - protocol: TCP - name: {{ .Values.service.name }} - selector: - app: {{ template "fullname" . }} - tier: {{ .Values.labels.tier }} - link: {{ .Values.labels.link }} diff --git a/deploy/helm/individual/dealerservice/values.yaml b/deploy/helm/individual/dealerservice/values.yaml deleted file mode 100644 index 73af13e..0000000 --- a/deploy/helm/individual/dealerservice/values.yaml +++ /dev/null @@ -1,29 +0,0 @@ -# Default values for orderservice. -# This is a YAML-formatted file. -# Declare variables to be passed into your templates. -replicaCount: 1 -apiversion: - deployment: apps/v1beta1 # for versions 1.8+ use apps/v1beta2 -image: - repository: mypumrpmicro.azurecr.io/pumrp - name: pumrp-dealer - tag: latest - pullPolicy: Always -labels: - tier: backend - link: PartsUnlimitedMrp -service: - name: dealer-service - type: ClusterIP - portName: http - externalPort: 80 - internalPort: 8080 - imagePullSecrets: puregistrykey -resources: - limits: - cpu: 100m - memory: 128Mi - requests: - cpu: 100m - memory: 128Mi - diff --git a/deploy/helm/individual/orderservice/.helmignore b/deploy/helm/individual/orderservice/.helmignore deleted file mode 100644 index f0c1319..0000000 --- a/deploy/helm/individual/orderservice/.helmignore +++ /dev/null @@ -1,21 +0,0 @@ -# Patterns to ignore when building packages. -# This supports shell glob matching, relative path matching, and -# negation (prefixed with !). Only one pattern per line. -.DS_Store -# Common VCS dirs -.git/ -.gitignore -.bzr/ -.bzrignore -.hg/ -.hgignore -.svn/ -# Common backup files -*.swp -*.bak -*.tmp -*~ -# Various IDEs -.project -.idea/ -*.tmproj diff --git a/deploy/helm/individual/orderservice/Chart.yaml b/deploy/helm/individual/orderservice/Chart.yaml deleted file mode 100644 index a3e640d..0000000 --- a/deploy/helm/individual/orderservice/Chart.yaml +++ /dev/null @@ -1,9 +0,0 @@ -apiVersion: v1 -description: A Helm chart for Order Service -name: orderservice -version: 0.1.0 -sources: -- https://dxdevop.visualstudio.com/mrpmicro/_git/code -maintainers: -- name: Parts Unlimited MRP GitHub Team -engine: gotpl diff --git a/deploy/helm/individual/orderservice/templates/NOTES.txt b/deploy/helm/individual/orderservice/templates/NOTES.txt deleted file mode 100644 index 2e5d6bc..0000000 --- a/deploy/helm/individual/orderservice/templates/NOTES.txt +++ /dev/null @@ -1,15 +0,0 @@ -1. Get the application URL by running these commands: -{{- if contains "NodePort" .Values.service.type }} - export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ template "fullname" . }}) - export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}") - echo http://$NODE_IP:$NODE_PORT/login -{{- else if contains "LoadBalancer" .Values.service.type }} - NOTE: It may take a few minutes for the LoadBalancer IP to be available. - You can watch the status of by running 'kubectl get svc -w {{ template "fullname" . }}' - export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ template "fullname" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}') - echo http://$SERVICE_IP:{{ .Values.service.externalPort }} -{{- else if contains "ClusterIP" .Values.service.type }} - export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app={{ template "fullname" . }}" -o jsonpath="{.items[0].metadata.name}") - echo "Visit http://127.0.0.1:8080 to use your application" - kubectl port-forward $POD_NAME 8080:{{ .Values.service.internalPort }} -{{- end }} diff --git a/deploy/helm/individual/orderservice/templates/_helpers.tpl b/deploy/helm/individual/orderservice/templates/_helpers.tpl deleted file mode 100644 index f0d83d2..0000000 --- a/deploy/helm/individual/orderservice/templates/_helpers.tpl +++ /dev/null @@ -1,16 +0,0 @@ -{{/* vim: set filetype=mustache: */}} -{{/* -Expand the name of the chart. -*/}} -{{- define "name" -}} -{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}} -{{- end -}} - -{{/* -Create a default fully qualified app name. -We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). -*/}} -{{- define "fullname" -}} -{{- $name := default .Chart.Name .Values.nameOverride -}} -{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}} -{{- end -}} diff --git a/deploy/helm/individual/orderservice/templates/deployment.yaml b/deploy/helm/individual/orderservice/templates/deployment.yaml deleted file mode 100644 index 1b10755..0000000 --- a/deploy/helm/individual/orderservice/templates/deployment.yaml +++ /dev/null @@ -1,24 +0,0 @@ -apiVersion: {{ .Values.apiversion.deployment }} -kind: Deployment -metadata: - name: {{ template "fullname" . }} - labels: - chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" -spec: - replicas: {{ .Values.replicaCount }} - template: - metadata: - labels: - app: {{ template "fullname" . }} - tier: {{ .Values.labels.tier }} - link: {{ .Values.labels.link }} - spec: - containers: - - name: {{ .Chart.Name }} - image: "{{ .Values.image.repository }}/{{ .Values.image.name }}:{{ .Values.image.tag }}" - imagePullPolicy: {{ .Values.image.pullPolicy }} - ports: - - name: {{ .Values.service.portName }} - containerPort: {{ .Values.service.internalPort }} - imagePullSecrets: - - name: {{ .Values.service.imagePullSecrets }} diff --git a/deploy/helm/individual/orderservice/templates/service.yaml b/deploy/helm/individual/orderservice/templates/service.yaml deleted file mode 100644 index ec0b65b..0000000 --- a/deploy/helm/individual/orderservice/templates/service.yaml +++ /dev/null @@ -1,17 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: {{ template "fullname" . }} - labels: - chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" -spec: - type: {{ .Values.service.type }} - ports: - - port: {{ .Values.service.externalPort }} - targetPort: {{ .Values.service.portName }} - protocol: TCP - name: {{ .Values.service.name }} - selector: - app: {{ template "fullname" . }} - tier: {{ .Values.labels.tier }} - link: {{ .Values.labels.link }} diff --git a/deploy/helm/individual/orderservice/values.yaml b/deploy/helm/individual/orderservice/values.yaml deleted file mode 100644 index 90f0095..0000000 --- a/deploy/helm/individual/orderservice/values.yaml +++ /dev/null @@ -1,29 +0,0 @@ -# Default values for orderservice. -# This is a YAML-formatted file. -# Declare variables to be passed into your templates. -replicaCount: 1 -apiversion: - deployment: apps/v1beta1 # for versions 1.8+ use apps/v1beta2 -image: - repository: mypumrpmicro.azurecr.io/pumrp - name: pumrp-order - tag: latest - pullPolicy: Always -labels: - tier: backend - link: PartsUnlimitedMrp -service: - name: order-service - type: ClusterIP - portName: http - externalPort: 80 - internalPort: 8080 - imagePullSecrets: puregistrykey -resources: - limits: - cpu: 100m - memory: 128Mi - requests: - cpu: 100m - memory: 128Mi - diff --git a/deploy/helm/individual/partsunlimitedmrp/.helmignore b/deploy/helm/individual/partsunlimitedmrp/.helmignore deleted file mode 100644 index f0c1319..0000000 --- a/deploy/helm/individual/partsunlimitedmrp/.helmignore +++ /dev/null @@ -1,21 +0,0 @@ -# Patterns to ignore when building packages. -# This supports shell glob matching, relative path matching, and -# negation (prefixed with !). Only one pattern per line. -.DS_Store -# Common VCS dirs -.git/ -.gitignore -.bzr/ -.bzrignore -.hg/ -.hgignore -.svn/ -# Common backup files -*.swp -*.bak -*.tmp -*~ -# Various IDEs -.project -.idea/ -*.tmproj diff --git a/deploy/helm/individual/partsunlimitedmrp/Chart.yaml b/deploy/helm/individual/partsunlimitedmrp/Chart.yaml deleted file mode 100644 index 31dc7ee..0000000 --- a/deploy/helm/individual/partsunlimitedmrp/Chart.yaml +++ /dev/null @@ -1,9 +0,0 @@ -apiVersion: v1 -description: A Helm chart for Parts Unlimited Mrp -name: partsunlimitedmrp -version: 0.1.0 -sources: -- https://dxdevop.visualstudio.com/mrpmicro/_git/code -maintainers: -- name: Parts Unlimited MRP GitHub Team -engine: gotpl \ No newline at end of file diff --git a/deploy/helm/individual/partsunlimitedmrp/charts/.helm/repository/cache/stable-index.yaml b/deploy/helm/individual/partsunlimitedmrp/charts/.helm/repository/cache/stable-index.yaml deleted file mode 100644 index 03fafe4..0000000 --- a/deploy/helm/individual/partsunlimitedmrp/charts/.helm/repository/cache/stable-index.yaml +++ /dev/null @@ -1,5793 +0,0 @@ -apiVersion: v1 -entries: - aws-cluster-autoscaler: - - apiVersion: v1 - created: 2017-03-09T19:33:31.126773901Z - description: Scales worker nodes within autoscaling groups. - digest: 291eaabbf54913e71cda39d42a6e9c4c493a3672a5b0b5183ea1991a76d6c317 - engine: gotpl - icon: https://github.com/kubernetes/kubernetes/blob/master/logo/logo.png - maintainers: - - email: mgoodness@gmail.com - name: Michael Goodness - name: aws-cluster-autoscaler - sources: - - https://github.com/kubernetes/contrib/tree/master/cluster-autoscaler/cloudprovider/aws - urls: - - https://kubernetes-charts.storage.googleapis.com/aws-cluster-autoscaler-0.2.1.tgz - version: 0.2.1 - - apiVersion: v1 - created: 2017-03-02T18:48:30.418071154Z - description: Scales worker nodes within autoscaling groups. - digest: 52ee58b51619f641d0f6df4c778bcd068242379a1a040a269f0fc93867b79b13 - engine: gotpl - maintainers: - - email: mgoodness@gmail.com - name: Michael Goodness - name: aws-cluster-autoscaler - sources: - - https://github.com/kubernetes/contrib/tree/master/cluster-autoscaler/cloudprovider/aws - urls: - - https://kubernetes-charts.storage.googleapis.com/aws-cluster-autoscaler-0.2.0.tgz - version: 0.2.0 - chaoskube: - - created: 2017-03-09T19:33:31.127058545Z - description: Chaoskube periodically kills random pods in your Kubernetes cluster. - digest: cc211be37255f2fdf7cc74022f51473c2c4af98c06b0871ab8c9b8341ee9d349 - engine: gotpl - home: https://github.com/linki/chaoskube - maintainers: - - email: linki+kubernetes.io@posteo.de - name: Martin Linkhorst - name: chaoskube - sources: - - https://github.com/linki/chaoskube - urls: - - https://kubernetes-charts.storage.googleapis.com/chaoskube-0.4.0.tgz - version: 0.4.0 - - created: 2017-02-13T04:18:31.525717582Z - description: A Helm chart for chaoskube - digest: 6e6466b2a7294853fbad6a1dc5526e7fd6eb75bafd035748259511ccf49f9c47 - engine: gotpl - home: https://github.com/linki/chaoskube - maintainers: - - email: linki+helm.sh@posteo.de - name: Martin Linkhorst - name: chaoskube - sources: - - https://github.com/linki/chaoskube - urls: - - https://kubernetes-charts.storage.googleapis.com/chaoskube-0.3.1.tgz - version: 0.3.1 - - created: 2017-02-13T21:18:28.251529085Z - description: Chaoskube periodically kills random pods in your Kubernetes cluster. - digest: 6439a906666fc62e7aeb28186ce2f4a730216941163edd799176cc30616e713a - engine: gotpl - home: https://github.com/linki/chaoskube - maintainers: - - email: linki+kubernetes.io@posteo.de - name: Martin Linkhorst - name: chaoskube - sources: - - https://github.com/linki/chaoskube - urls: - - https://kubernetes-charts.storage.googleapis.com/chaoskube-0.3.1-1.tgz - version: 0.3.1-1 - chronograf: - - created: 2017-03-09T19:33:31.127406246Z - description: Open-source web application written in Go and React.js that provides - the tools to visualize your monitoring data and easily create alerting and automation - rules. - digest: 6bc90a815f7fc513bfa2b4d1a56a03e53444bfd08b742e0d0f1ff9f3b5db52f7 - engine: gotpl - home: https://www.influxdata.com/time-series-platform/chronograf/ - keywords: - - chronograf - - visualizaion - - timeseries - maintainers: - - email: jack@influxdb.com - name: Jack Zampolin - name: chronograf - urls: - - https://kubernetes-charts.storage.googleapis.com/chronograf-0.1.2.tgz - version: 0.1.2 - - created: 2017-02-13T04:18:31.52604543Z - description: Chart for Chronograf - digest: 985fa74feb6ed111220ca7a8c5da529accd42def9d75f56c0c82902631bcf15f - engine: gotpl - home: https://www.influxdata.com/time-series-platform/chronograf/ - keywords: - - chronograf - - visualizaion - - timeseries - maintainers: - - email: jack@influxdb.com - name: Jack Zampolin - name: chronograf - urls: - - https://kubernetes-charts.storage.googleapis.com/chronograf-0.1.1.tgz - version: 0.1.1 - - created: 2017-01-28T00:33:31.060189495Z - description: Chart for Chronograf - digest: ea03695da15a018e84d05e0fd97d581f3fd348d8461aa098cd221b5010176a35 - engine: gotpl - home: https://www.influxdata.com/time-series-platform/chronograf/ - keywords: - - chronograf - - visualizaion - - timeseries - maintainers: - - email: jack@influxdb.com - name: Jack Zampolin - name: chronograf - urls: - - https://kubernetes-charts.storage.googleapis.com/chronograf-0.1.0.tgz - version: 0.1.0 - cockroachdb: - - created: 2017-03-09T19:33:31.12791987Z - description: CockroachDB is a scalable, survivable, strongly-consistent SQL database. - digest: c51bf6c3d07067b80ca8661ff8460b2bb7d25d242f153045668ba95566fc8069 - home: https://www.cockroachlabs.com - icon: https://raw.githubusercontent.com/cockroachdb/cockroach/master/docs/media/cockroach_db.png - maintainers: - - email: alex@cockroachlabs.com - name: Alex Robinson - name: cockroachdb - sources: - - https://github.com/cockroachdb/cockroach - urls: - - https://kubernetes-charts.storage.googleapis.com/cockroachdb-0.2.2.tgz - version: 0.2.2 - - created: 2017-02-13T04:18:31.526409785Z - description: CockroachDB Helm chart for Kubernetes. - digest: 0eec741613e00f7092ec81469f919cd79fec52a22e8685063c0b0d8fd6570c37 - home: https://www.cockroachlabs.com - maintainers: - - email: alex@cockroachlabs.com - name: Alex Robinson - name: cockroachdb - sources: - - https://github.com/cockroachdb/cockroach - urls: - - https://kubernetes-charts.storage.googleapis.com/cockroachdb-0.2.1.tgz - version: 0.2.1 - - created: 2017-01-27T21:48:32.059935168Z - description: CockroachDB Helm chart for Kubernetes. - digest: 7b41add319a997fd3d862d6649b707313f59ac6fa137842db65230342baff619 - home: https://www.cockroachlabs.com - maintainers: - - email: alex@cockroachlabs.com - name: Alex Robinson - name: cockroachdb - sources: - - https://github.com/cockroachdb/cockroach - urls: - - https://kubernetes-charts.storage.googleapis.com/cockroachdb-0.2.0.tgz - version: 0.2.0 - concourse: - - created: 2017-03-09T19:33:31.129846524Z - description: Concourse is a simple and scalable CI system. - digest: b7ea57e289002deba839f52acf6a5919870ab99910f12bcc6edadd4ae5651826 - engine: gotpl - home: https://concourse.ci/ - icon: https://avatars1.githubusercontent.com/u/7809479 - keywords: - - ci - - concourse - - concourse.ci - maintainers: - - email: frodenas@gmail.com - name: Ferran Rodenas - name: concourse - sources: - - https://github.com/concourse/bin - - https://github.com/kubernetes/charts - urls: - - https://kubernetes-charts.storage.googleapis.com/concourse-0.1.3.tgz - version: 0.1.3 - - created: 2017-02-14T19:03:29.77100439Z - description: Concourse is a simple and scalable CI system. - digest: 5f8ed4eb5b0acf8da7b34772714154322405b796553a33fc6ffd779e0a556003 - engine: gotpl - home: https://concourse.ci/ - icon: https://avatars1.githubusercontent.com/u/7809479 - keywords: - - ci - - concourse - - concourse.ci - maintainers: - - email: frodenas@gmail.com - name: Ferran Rodenas - name: concourse - sources: - - https://github.com/concourse/bin - - https://github.com/kubernetes/charts - urls: - - https://kubernetes-charts.storage.googleapis.com/concourse-0.1.2.tgz - version: 0.1.2 - - created: 2017-02-13T21:18:28.254273427Z - description: Concourse is a simple and scalable CI system. - digest: cba53dadd21dbd85b31a1a522a5eaeb49cadfa595ba0762c02dca04905d35f20 - engine: gotpl - home: https://concourse.ci/ - icon: https://avatars1.githubusercontent.com/u/7809479 - keywords: - - ci - - concourse - - concourse.ci - maintainers: - - email: frodenas@gmail.com - name: Ferran Rodenas - name: concourse - sources: - - https://github.com/concourse/bin - - https://github.com/kubernetes/charts - urls: - - https://kubernetes-charts.storage.googleapis.com/concourse-0.1.1.tgz - version: 0.1.1 - - created: 2017-02-10T23:18:26.003782261Z - description: Concourse Helm chart for Kubernetes. - digest: 08e6b4c56357ce15dfd66b0fad8c2df37664877b16b4a0afcbaeb301ddcc7432 - engine: gotpl - home: https://concourse.ci/ - keywords: - - ci - - concourse - - concourse.ci - maintainers: - - email: frodenas@gmail.com - name: Ferran Rodenas - name: concourse - sources: - - https://github.com/concourse/bin - - https://github.com/kubernetes/charts - urls: - - https://kubernetes-charts.storage.googleapis.com/concourse-0.1.0.tgz - version: 0.1.0 - datadog: - - created: 2017-03-09T19:33:31.130993773Z - description: DataDog Agent - digest: b32c28e76004eedf5c160936ccf35adca3a150ae1d0b491df52d017725b5ee90 - home: https://www.datadoghq.com - icon: https://datadog-live.imgix.net/img/dd_logo_70x75.png - keywords: - - monitoring - - alerting - - metric - maintainers: - - email: gtaylor@gc-taylor.com - name: Greg Taylor - name: datadog - sources: - - https://app.datadoghq.com/account/settings#agent/kubernetes - - https://github.com/DataDog/docker-dd-agent - urls: - - https://kubernetes-charts.storage.googleapis.com/datadog-0.2.1.tgz - version: 0.2.1 - - created: 2017-02-11T03:18:26.518137684Z - description: DataDog Agent - digest: d534bdcf4644d88ebfa70c58e57aafed41b75da4264042d4975f70d091e2b493 - keywords: - - monitoring - - alerting - - metric - maintainers: - - email: gtaylor@gc-taylor.com - name: Greg Taylor - name: datadog - sources: - - https://app.datadoghq.com/account/settings#agent/kubernetes - - https://github.com/DataDog/docker-dd-agent - urls: - - https://kubernetes-charts.storage.googleapis.com/datadog-0.2.0.tgz - version: 0.2.0 - - created: 2017-01-04T00:48:19.731877862Z - description: DataDog Agent - digest: 694c1d036d92c8bb60638f7bd66144a991a807dc879bedacf8a5d32e9d72081a - keywords: - - monitoring - - alerting - - metric - maintainers: - - email: gtaylor@gc-taylor.com - name: Greg Taylor - name: datadog - sources: - - https://app.datadoghq.com/account/settings#agent/kubernetes - - https://github.com/DataDog/docker-dd-agent - urls: - - https://kubernetes-charts.storage.googleapis.com/datadog-0.1.0.tgz - version: 0.1.0 - dokuwiki: - - created: 2017-03-09T19:33:31.131514889Z - description: DokuWiki is a standards-compliant, simple to use wiki optimized for - creating documentation. It is targeted at developer teams, workgroups, and small - companies. All data is stored in plain text files, so no database is required. - digest: 3c46f9d9196bbf975711b2bb7c889fd3df1976cc57c3c120c7374d721da0e240 - engine: gotpl - home: http://www.dokuwiki.org/ - icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-110x117.png - keywords: - - dokuwiki - - wiki - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: dokuwiki - sources: - - https://github.com/bitnami/bitnami-docker-dokuwiki - urls: - - https://kubernetes-charts.storage.googleapis.com/dokuwiki-0.1.3.tgz - version: 0.1.3 - - created: 2017-03-02T19:33:28.170205427Z - description: DokuWiki is a standards-compliant, simple to use wiki optimized for - creating documentation. It is targeted at developer teams, workgroups, and small - companies. All data is stored in plain text files, so no database is required. - digest: f533bc20e08179a49cca77b175f897087dc3f2c57e6c89ecbd7264ab5975d66a - engine: gotpl - home: http://www.dokuwiki.org/ - icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-110x117.png - keywords: - - dokuwiki - - wiki - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: dokuwiki - sources: - - https://github.com/bitnami/bitnami-docker-dokuwiki - urls: - - https://kubernetes-charts.storage.googleapis.com/dokuwiki-0.1.2.tgz - version: 0.1.2 - - created: 2017-02-01T02:18:29.116555882Z - description: DokuWiki is a standards-compliant, simple to use wiki optimized for - creating documentation. It is targeted at developer teams, workgroups, and small - companies. All data is stored in plain text files, so no database is required. - digest: 34a926398cfafbf426ff468167ef49577252e260ebce5df33380e6e67b79fe59 - engine: gotpl - home: http://www.dokuwiki.org/ - icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-110x117.png - keywords: - - dokuwiki - - wiki - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: dokuwiki - sources: - - https://github.com/bitnami/bitnami-docker-dokuwiki - urls: - - https://kubernetes-charts.storage.googleapis.com/dokuwiki-0.1.1.tgz - version: 0.1.1 - - created: 2017-01-28T00:33:31.06436596Z - description: DokuWiki is a standards-compliant, simple to use wiki optimized for - creating documentation. It is targeted at developer teams, workgroups, and small - companies. All data is stored in plain text files, so no database is required. - digest: 6825fbacb709cf05901985561be10ba9473a379488d99b71d1590d33f5a81374 - engine: gotpl - home: http://www.dokuwiki.org/ - icon: https://bitnami.com/assets/stacks/dokuwiki/img/dokuwiki-stack-110x117.png - keywords: - - dokuwiki - - wiki - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: dokuwiki - sources: - - https://github.com/bitnami/bitnami-docker-dokuwiki - urls: - - https://kubernetes-charts.storage.googleapis.com/dokuwiki-0.1.0.tgz - version: 0.1.0 - drupal: - - created: 2017-03-09T19:33:31.132388612Z - description: One of the most versatile open source content management systems. - digest: 24c4f187b50c0e961cc2cacf6e6b2ce6d6b225c73637c578e001bebd9b3f5d48 - engine: gotpl - home: http://www.drupal.org/ - icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png - keywords: - - drupal - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: drupal - sources: - - https://github.com/bitnami/bitnami-docker-drupal - urls: - - https://kubernetes-charts.storage.googleapis.com/drupal-0.4.4.tgz - version: 0.4.4 - - created: 2017-03-02T19:33:28.170963773Z - description: One of the most versatile open source content management systems. - digest: 7fcea4684a3d520454aeaa10beb9f9b1789c09c097680fc484954084f283feb3 - engine: gotpl - home: http://www.drupal.org/ - icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png - keywords: - - drupal - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: drupal - sources: - - https://github.com/bitnami/bitnami-docker-drupal - urls: - - https://kubernetes-charts.storage.googleapis.com/drupal-0.4.3.tgz - version: 0.4.3 - - created: 2017-02-27T17:03:27.765392204Z - description: One of the most versatile open source content management systems. - digest: adb23bc71125b9691b407a47dadf4298de3516805218813b56067967e39db7d8 - engine: gotpl - home: http://www.drupal.org/ - icon: https://bitnami.com/assets/stacks/drupal/img/drupal-stack-220x234.png - keywords: - - drupal - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: drupal - sources: - - https://github.com/bitnami/bitnami-docker-drupal - urls: - - https://kubernetes-charts.storage.googleapis.com/drupal-0.4.2.tgz - version: 0.4.2 - - created: 2017-02-11T00:18:52.26723498Z - description: One of the most versatile open source content management systems. - digest: 5de529e25767e8a37b8d6f413daa0fe99f5c304e48ddcfa8adb4d8c7a0496aa7 - engine: gotpl - home: http://www.drupal.org/ - keywords: - - drupal - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: drupal - sources: - - https://github.com/bitnami/bitnami-docker-drupal - urls: - - https://kubernetes-charts.storage.googleapis.com/drupal-0.4.1.tgz - version: 0.4.1 - - created: 2017-01-28T00:33:31.065139372Z - description: One of the most versatile open source content management systems. - digest: a35dbf9d470972cc2461de3e0a8fcf2fec8d0adc04f5a0f1e924505f22c714d7 - engine: gotpl - home: http://www.drupal.org/ - keywords: - - drupal - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: drupal - sources: - - https://github.com/bitnami/bitnami-docker-drupal - urls: - - https://kubernetes-charts.storage.googleapis.com/drupal-0.4.0.tgz - version: 0.4.0 - - created: 2017-01-04T00:48:19.73297256Z - description: One of the most versatile open source content management systems. - digest: a62d686d6bd47643dfa489e395dda89286954f785123a43a88db7ef34f3ea48d - engine: gotpl - home: http://www.drupal.org/ - keywords: - - drupal - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: drupal - sources: - - https://github.com/bitnami/bitnami-docker-drupal - urls: - - https://kubernetes-charts.storage.googleapis.com/drupal-0.3.10.tgz - version: 0.3.10 - - created: 2016-12-15T00:48:24.005322531Z - description: One of the most versatile open source content management systems. - digest: 2c189424bda94eeebb7e6370e96884f09bdfa81498cb93ac4723d24c92a3938e - engine: gotpl - home: http://www.drupal.org/ - keywords: - - drupal - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: drupal - sources: - - https://github.com/bitnami/bitnami-docker-drupal - urls: - - https://kubernetes-charts.storage.googleapis.com/drupal-0.3.9.tgz - version: 0.3.9 - - created: 2016-12-09T18:48:20.182097412Z - description: One of the most versatile open source content management systems. - digest: 3596f47c5dcaa7a975d1c4cb7bf7ef6790c9ad8dda41a5a329e30c1ea8a40d11 - engine: gotpl - home: http://www.drupal.org/ - keywords: - - drupal - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: drupal - sources: - - https://github.com/bitnami/bitnami-docker-drupal - urls: - - https://kubernetes-charts.storage.googleapis.com/drupal-0.3.8.tgz - version: 0.3.8 - - created: 2016-11-21T19:48:21.904806991Z - description: One of the most versatile open source content management systems. - digest: 78b2bb3717be63dccb02ea06b711ca7cf7869848b296b880099c6264e86d86d3 - engine: gotpl - home: http://www.drupal.org/ - keywords: - - drupal - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: drupal - sources: - - https://github.com/bitnami/bitnami-docker-drupal - urls: - - https://kubernetes-charts.storage.googleapis.com/drupal-0.3.7.tgz - version: 0.3.7 - - created: 2016-11-08T15:03:20.739400722Z - description: One of the most versatile open source content management systems. - digest: 5508b29e20a5d609f76319869774f008dcc4bed13bbbc7ed40546bc9af8c7cd7 - engine: gotpl - home: http://www.drupal.org/ - keywords: - - drupal - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: drupal - sources: - - https://github.com/bitnami/bitnami-docker-drupal - urls: - - https://kubernetes-charts.storage.googleapis.com/drupal-0.3.6.tgz - version: 0.3.6 - - created: 2016-11-03T19:33:29.11780736Z - description: One of the most versatile open source content management systems. - digest: 023a282c93f8411fb81bb4fff7820c1337aad0586ccf7dae55bdbed515ad8b05 - engine: gotpl - home: http://www.drupal.org/ - keywords: - - drupal - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: drupal - sources: - - https://github.com/bitnami/bitnami-docker-drupal - urls: - - https://kubernetes-charts.storage.googleapis.com/drupal-0.3.5.tgz - version: 0.3.5 - - created: 2016-10-21T19:18:18.619010562Z - description: One of the most versatile open source content management systems. - digest: 9bdaa53f7a9e82c9b32c7ac9b34b84fd142671732a54423a2dcdc893c4162801 - engine: gotpl - home: http://www.drupal.org/ - keywords: - - drupal - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: drupal - sources: - - https://github.com/bitnami/bitnami-docker-drupal - urls: - - https://kubernetes-charts.storage.googleapis.com/drupal-0.3.4.tgz - version: 0.3.4 - - created: 2016-10-19T00:03:14.027652488Z - description: One of the most versatile open source content management systems. - digest: 25650526abc1036398dbb314d77a0062cbb644b2c5791a258fb863fdaad5093d - engine: gotpl - home: http://www.drupal.org/ - keywords: - - drupal - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: drupal - sources: - - https://github.com/bitnami/bitnami-docker-drupal - urls: - - https://kubernetes-charts.storage.googleapis.com/drupal-0.3.3.tgz - version: 0.3.3 - - created: 2016-10-19T00:03:14.027073479Z - description: One of the most versatile open source content management systems. - digest: 13d5d32d316c08359221d230004dd2adc0152362e87abcc0d61ea191241fa69f - engine: gotpl - home: http://www.drupal.org/ - keywords: - - drupal - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: drupal - sources: - - https://github.com/bitnami/bitnami-docker-drupal - urls: - - https://kubernetes-charts.storage.googleapis.com/drupal-0.3.2.tgz - version: 0.3.2 - - created: 2016-10-19T00:03:14.025451665Z - description: One of the most versatile open source content management systems. - digest: b3f09ecd191f8c06275c96d9af4d77a97c94355525864201e9baf151b17bd5a7 - engine: gotpl - home: http://www.drupal.org/ - keywords: - - drupal - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: drupal - sources: - - https://github.com/bitnami/bitnami-docker-drupal - urls: - - https://kubernetes-charts.storage.googleapis.com/drupal-0.3.1.tgz - version: 0.3.1 - - created: 2016-10-19T00:03:14.024557743Z - description: One of the most versatile open source content management systems. - digest: c56fc55b93b0dead65af7b81bbd54befd5115860698ca475baa5acb178a12e5a - engine: gotpl - home: http://www.drupal.org/ - keywords: - - drupal - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: drupal - sources: - - https://github.com/bitnami/bitnami-docker-drupal - urls: - - https://kubernetes-charts.storage.googleapis.com/drupal-0.3.0.tgz - version: 0.3.0 - etcd-operator: - - apiVersion: v1 - created: 2017-03-09T19:33:31.132764919Z - description: CoreOS etcd-operator Helm chart for Kubernetes - digest: 1eb39b2f0ca26762eb13fc8cb577be741f7bb9d3162ab9c4547bb5176383bc2b - home: https://github.com/coreos/etcd-operator - icon: https://raw.githubusercontent.com/coreos/etcd/master/logos/etcd-horizontal-color.png - maintainers: - - email: chance.zibolski@coreos.com - name: Chance Zibolski - - email: lachlan@deis.com - name: Lachlan Evenson - name: etcd-operator - sources: - - https://github.com/coreos/etcd-operator - urls: - - https://kubernetes-charts.storage.googleapis.com/etcd-operator-0.2.0.tgz - version: 0.2.0 - - apiVersion: v1 - created: 2017-03-08T19:18:29.84391993Z - description: CoreOS etcd-operator Helm chart for Kubernetes - digest: 4a65fe6c61e731b373395e524f160eb4ced32a22cbfb3ff5d406b1c8bc3ae3c7 - home: https://github.com/coreos/etcd-operator - icon: https://raw.githubusercontent.com/coreos/etcd/master/logos/etcd-horizontal-color.png - maintainers: - - email: lachlan@deis.com - name: Lachlan Evenson - name: etcd-operator - sources: - - https://github.com/coreos/etcd-operator - urls: - - https://kubernetes-charts.storage.googleapis.com/etcd-operator-0.1.1.tgz - version: 0.1.1 - - apiVersion: v1 - created: 2017-02-11T03:18:26.519796919Z - description: CoreOS etcd-operator Helm chart for Kubernetes - digest: 9bf72369082c4bad154171b3b68ad435331d6d07ae6d00e79e859f2a1599017b - icon: https://github.com/coreos/etcd/blob/master/logos/etcd-horizontal-color.png - maintainers: - - email: lachlan@deis.com - name: Lachlan Evenson - name: etcd-operator - sources: - - https://github.com/coreos/etcd-operator - urls: - - https://kubernetes-charts.storage.googleapis.com/etcd-operator-0.1.0.tgz - version: 0.1.0 - factorio: - - created: 2017-03-09T19:33:31.133240483Z - description: Factorio dedicated server. - digest: 5a60defdd8ac6f2276950662ba75f65d20c9e37edc85149012a2c84146eb6cff - home: https://www.factorio.com/ - icon: https://us1.factorio.com/assets/img/factorio-logo.png - keywords: - - game - - server - maintainers: - - email: gtaylor@gc-taylor.com - name: Greg Taylor - name: factorio - sources: - - https://github.com/games-on-k8s/docker-factorio - urls: - - https://kubernetes-charts.storage.googleapis.com/factorio-0.1.4.tgz - version: 0.1.4 - - created: 2017-02-13T04:18:31.530714209Z - description: Factorio dedicated server. - digest: 26244a5e1b5f992cdbef73ef9c7ffcaa52af538912fa299210f72275f2c756c9 - keywords: - - game - - server - maintainers: - - email: gtaylor@gc-taylor.com - name: Greg Taylor - name: factorio - sources: - - https://github.com/games-on-k8s/docker-factorio - urls: - - https://kubernetes-charts.storage.googleapis.com/factorio-0.1.3.tgz - version: 0.1.3 - - created: 2017-01-28T00:33:31.066072163Z - description: Factorio dedicated server. - digest: d6f4e42b82713c2da69e1ddcfce4a04fad31d4af915629d8e83e54b90a822f9a - keywords: - - game - - server - maintainers: - - email: gtaylor@gc-taylor.com - name: Greg Taylor - name: factorio - sources: - - https://github.com/games-on-k8s/docker-factorio - urls: - - https://kubernetes-charts.storage.googleapis.com/factorio-0.1.2.tgz - version: 0.1.2 - - created: 2016-12-02T09:03:20.175832035Z - description: Factorio dedicated server. - digest: 3cc1f83669fd1d97eb96e76ba4821e8664350a4c310d3a14e62be18cc09e59b7 - keywords: - - game - - server - maintainers: - - email: gtaylor@gc-taylor.com - name: Greg Taylor - name: factorio - sources: - - https://github.com/games-on-k8s/docker-factorio - urls: - - https://kubernetes-charts.storage.googleapis.com/factorio-0.1.1.tgz - version: 0.1.1 - - created: 2016-11-07T18:33:21.243890443Z - description: Factorio dedicated server. - digest: 8edc1340cd99225a769b5843a677896c0d54a079133f9759211a1839bc7bb3eb - keywords: - - game - - server - maintainers: - - email: gtaylor@gc-taylor.com - name: Greg Taylor - name: factorio - sources: - - https://github.com/games-on-k8s/docker-factorio - urls: - - https://kubernetes-charts.storage.googleapis.com/factorio-0.1.0.tgz - version: 0.1.0 - gcloud-endpoints: - - created: 2017-03-09T19:33:31.133650103Z - description: Develop, deploy, protect and monitor your APIs with Google Cloud - Endpoints. - digest: 172b56d0343c560f06e18858038e2096c910b37075a90f4303f77a79342b56fd - engine: gotpl - home: https://cloud.google.com/endpoints/ - keywords: - - google - - endpoints - - nginx - - gcloud - - proxy - - authentication - - monitoring - - api - - swagger - - open api - maintainers: - - email: mtucker@deis.com - name: Matt Tucker - name: gcloud-endpoints - urls: - - https://kubernetes-charts.storage.googleapis.com/gcloud-endpoints-0.1.0.tgz - version: 0.1.0 - ghost: - - created: 2017-03-09T19:33:31.13445244Z - description: A simple, powerful publishing platform that allows you to share your - stories with the world - digest: 6342a95aeef40690430c2e80b167fbb116a632746cdca49cfac4cbd535eadb22 - engine: gotpl - home: http://www.ghost.org/ - icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png - keywords: - - ghost - - blog - - http - - web - - application - - nodejs - - javascript - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: ghost - sources: - - https://github.com/bitnami/bitnami-docker-ghost - urls: - - https://kubernetes-charts.storage.googleapis.com/ghost-0.4.6.tgz - version: 0.4.6 - - created: 2017-03-08T19:03:31.719494672Z - description: A simple, powerful publishing platform that allows you to share your - stories with the world - digest: 8998a9a4e75e777edb6f06c05b45d461daebba09021161af3bef523efd193b15 - engine: gotpl - home: http://www.ghost.org/ - icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png - keywords: - - ghost - - blog - - http - - web - - application - - nodejs - - javascript - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: ghost - sources: - - https://github.com/bitnami/bitnami-docker-ghost - urls: - - https://kubernetes-charts.storage.googleapis.com/ghost-0.4.5.tgz - version: 0.4.5 - - created: 2017-02-27T17:03:27.767416735Z - description: A simple, powerful publishing platform that allows you to share your - stories with the world - digest: e44c9a53355086ded1832f769dca515b863337ad118ba618ef97f37b3ef84030 - engine: gotpl - home: http://www.ghost.org/ - icon: https://bitnami.com/assets/stacks/ghost/img/ghost-stack-220x234.png - keywords: - - ghost - - blog - - http - - web - - application - - nodejs - - javascript - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: ghost - sources: - - https://github.com/bitnami/bitnami-docker-ghost - urls: - - https://kubernetes-charts.storage.googleapis.com/ghost-0.4.4.tgz - version: 0.4.4 - - created: 2017-02-11T00:18:52.2688126Z - description: A simple, powerful publishing platform that allows you to share your - stories with the world - digest: b0c94a93c88fde68bb4fc78e92691d46cd2eb4d32cbac011e034565fbd35d46b - engine: gotpl - home: http://www.ghost.org/ - keywords: - - ghost - - blog - - http - - web - - application - - nodejs - - javascript - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: ghost - sources: - - https://github.com/bitnami/bitnami-docker-ghost - urls: - - https://kubernetes-charts.storage.googleapis.com/ghost-0.4.3.tgz - version: 0.4.3 - - created: 2017-01-29T22:48:35.944809746Z - description: A simple, powerful publishing platform that allows you to share your - stories with the world - digest: 791ccb42b62d56d50c72b37db3282eb3f2af75d667a25542d76c7991004eb822 - engine: gotpl - home: http://www.ghost.org/ - keywords: - - ghost - - blog - - http - - web - - application - - nodejs - - javascript - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: ghost - sources: - - https://github.com/bitnami/bitnami-docker-ghost - urls: - - https://kubernetes-charts.storage.googleapis.com/ghost-0.4.2.tgz - version: 0.4.2 - - created: 2017-01-21T00:18:31.342008382Z - description: A simple, powerful publishing platform that allows you to share your - stories with the world - digest: 331a2b145bfdb39b626313cda7dc539f32dbda5149893957589c5406317fca53 - engine: gotpl - home: http://www.ghost.org/ - keywords: - - ghost - - blog - - http - - web - - application - - nodejs - - javascript - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: ghost - sources: - - https://github.com/bitnami/bitnami-docker-ghost - urls: - - https://kubernetes-charts.storage.googleapis.com/ghost-0.4.1.tgz - version: 0.4.1 - - created: 2016-12-09T18:48:20.183434341Z - description: A simple, powerful publishing platform that allows you to share your - stories with the world - digest: 804227af037082a0f5c3c579feb9e24eb3682449e78876971c93a109bc716f40 - engine: gotpl - home: http://www.ghost.org/ - keywords: - - ghost - - blog - - http - - web - - application - - nodejs - - javascript - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: ghost - sources: - - https://github.com/bitnami/bitnami-docker-ghost - urls: - - https://kubernetes-charts.storage.googleapis.com/ghost-0.4.0.tgz - version: 0.4.0 - gitlab-ce: - - created: 2017-03-09T19:33:31.135642605Z - description: GitLab Community Edition - digest: 20c0895dd3c5c1edbc0e3be4687f0d0874599cd0c53e49560f9f0a91506957ce - home: https://about.gitlab.com - icon: https://gitlab.com/uploads/group/avatar/6543/gitlab-logo-square.png - keywords: - - git - - ci - - deploy - - issue tracker - - code review - - wiki - maintainers: - - email: gtaylor@gc-taylor.com - name: Greg Taylor - name: gitlab-ce - sources: - - https://hub.docker.com/r/gitlab/gitlab-ce/ - - https://docs.gitlab.com/omnibus/ - urls: - - https://kubernetes-charts.storage.googleapis.com/gitlab-ce-0.1.5.tgz - version: 0.1.5 - - created: 2017-02-14T02:48:28.88667289Z - description: GitLab Community Edition - digest: e05d4de559597760d59ca684fab107abcc0968b3260a77b16099d31e0b00cd74 - keywords: - - git - - ci - - deploy - - issue tracker - - code review - - wiki - maintainers: - - email: gtaylor@gc-taylor.com - name: Greg Taylor - name: gitlab-ce - sources: - - https://hub.docker.com/r/gitlab/gitlab-ce/ - - https://docs.gitlab.com/omnibus/ - urls: - - https://kubernetes-charts.storage.googleapis.com/gitlab-ce-0.1.4.tgz - version: 0.1.4 - - created: 2017-02-13T20:18:28.097071087Z - description: GitLab Community Edition - digest: a2fef3fd8d3187f8a4242d66435488bce4193ae3f2db8d3ec14da1c4373c2519 - keywords: - - git - - ci - - deploy - - issue tracker - - code review - - wiki - maintainers: - - email: gtaylor@gc-taylor.com - name: Greg Taylor - name: gitlab-ce - sources: - - https://hub.docker.com/r/gitlab/gitlab-ce/ - - https://docs.gitlab.com/omnibus/ - urls: - - https://kubernetes-charts.storage.googleapis.com/gitlab-ce-0.1.3.tgz - version: 0.1.3 - - created: 2017-01-26T03:18:35.336711333Z - description: GitLab Community Edition - digest: 3ca821c4e3bec2fe7541b95f94503875c508517e2f1200368268511e254df360 - keywords: - - git - - ci - - deploy - - issue tracker - - code review - - wiki - maintainers: - - email: gtaylor@gc-taylor.com - name: Greg Taylor - name: gitlab-ce - sources: - - https://hub.docker.com/r/gitlab/gitlab-ce/ - - https://docs.gitlab.com/omnibus/ - urls: - - https://kubernetes-charts.storage.googleapis.com/gitlab-ce-0.1.2.tgz - version: 0.1.2 - - created: 2017-01-13T20:48:31.520266166Z - description: GitLab Community Edition - digest: d78cfc8cc2e262c49e1aee3af046509b92b022a5cd4b522778e846ddcd808d9b - keywords: - - git - - ci - - deploy - - issue tracker - - code review - - wiki - maintainers: - - email: gtaylor@gc-taylor.com - name: Greg Taylor - name: gitlab-ce - sources: - - https://hub.docker.com/r/gitlab/gitlab-ce/ - - https://docs.gitlab.com/omnibus/ - urls: - - https://kubernetes-charts.storage.googleapis.com/gitlab-ce-0.1.1.tgz - version: 0.1.1 - - created: 2016-12-15T21:18:24.667256782Z - description: GitLab Community Edition - digest: 2c84a056e3f6d66a6aed763b2f4a26c1f4275eb3f6ca64798962a070809c6272 - keywords: - - git - - ci - - deploy - - issue tracker - - code review - - wiki - maintainers: - - email: gtaylor@gc-taylor.com - name: Greg Taylor - name: gitlab-ce - sources: - - https://hub.docker.com/r/gitlab/gitlab-ce/ - - https://docs.gitlab.com/omnibus/ - urls: - - https://kubernetes-charts.storage.googleapis.com/gitlab-ce-0.1.0.tgz - version: 0.1.0 - grafana: - - created: 2017-03-09T19:33:31.136271201Z - description: The leading tool for querying and visualizing time series and metrics. - digest: 7fac33dcd25d8ac60071e56968db133ecfa4f796732f92044d1f7714495840fd - engine: gotpl - home: https://grafana.net - icon: https://raw.githubusercontent.com/grafana/grafana/master/public/img/logo_transparent_400x.png - maintainers: - - email: zanhsieh@gmail.com - name: Ming Hsieh - name: grafana - sources: - - https://github.com/grafana/grafana - urls: - - https://kubernetes-charts.storage.googleapis.com/grafana-0.2.3.tgz - version: 0.2.3 - - created: 2017-02-13T22:33:28.777518221Z - description: The leading tool for querying and visualizing time series and metrics. - digest: 037158b80733838ab2ad84928c999997ab76b5383cbeb4cce6c174fe5bc5ae8d - engine: gotpl - home: https://grafana.net - icon: https://raw.githubusercontent.com/grafana/grafana/master/public/img/logo_transparent_400x.png - maintainers: - - email: zanhsieh@gmail.com - name: Ming Hsieh - name: grafana - sources: - - https://github.com/grafana/grafana - urls: - - https://kubernetes-charts.storage.googleapis.com/grafana-0.2.2.tgz - version: 0.2.2 - - created: 2017-02-13T04:18:31.532928133Z - description: A Helm chart for Kubernetes - digest: e49f08bd26843eb0449304c72fd9be3e65de0d8647457f39807f9aa296ba9b6a - engine: gotpl - home: https://grafana.net - maintainers: - - email: zanhsieh@gmail.com - name: Ming Hsieh - name: grafana - sources: - - https://github.com/grafana/grafana - urls: - - https://kubernetes-charts.storage.googleapis.com/grafana-0.2.1.tgz - version: 0.2.1 - - created: 2017-01-29T23:03:26.897254812Z - description: A Helm chart for Kubernetes - digest: 283be1abb811d005b3759f65761e4465e79f2031be8a47b3d87256e88888f047 - engine: gotpl - home: https://grafana.net - maintainers: - - email: zanhsieh@gmail.com - name: Ming Hsieh - name: grafana - sources: - - https://github.com/grafana/grafana - urls: - - https://kubernetes-charts.storage.googleapis.com/grafana-0.2.0.tgz - version: 0.2.0 - influxdb: - - created: 2017-03-09T19:33:31.136784003Z - description: Scalable datastore for metrics, events, and real-time analytics. - digest: 499e87e9a0cfb2452107eaabc5e81bb5382554731b12e20dac791d81d492044e - engine: gotpl - home: https://www.influxdata.com/time-series-platform/influxdb/ - keywords: - - influxdb - - database - - timeseries - maintainers: - - email: jack@influxdb.com - name: Jack Zampolin - name: influxdb - sources: - - https://github.com/influxdata/influxdb - urls: - - https://kubernetes-charts.storage.googleapis.com/influxdb-0.2.1.tgz - version: 0.2.1 - - created: 2017-02-13T17:03:30.109119817Z - description: Scalable datastore for metrics, events, and real-time analytics. - digest: e78ce7b2aac9538e5f6087fc77e5e30ab41a2a54d9bb1381b02830dd3324f0a9 - engine: gotpl - home: https://www.influxdata.com/time-series-platform/influxdb/ - keywords: - - influxdb - - database - - timeseries - maintainers: - - email: jack@influxdb.com - name: Jack Zampolin - name: influxdb - sources: - - https://github.com/influxdata/influxdb - urls: - - https://kubernetes-charts.storage.googleapis.com/influxdb-0.1.2.tgz - version: 0.1.2 - - created: 2017-02-13T04:33:52.294695041Z - description: Chart for InfluxDB - digest: 3341f3cca2d60540b219390688ac600ec605a331975cd402d6489969a0346aec - engine: gotpl - home: https://www.influxdata.com/time-series-platform/influxdb/ - keywords: - - influxdb - - database - - timeseries - maintainers: - - email: jack@influxdb.com - name: Jack Zampolin - name: influxdb - urls: - - https://kubernetes-charts.storage.googleapis.com/influxdb-0.1.1.tgz - version: 0.1.1 - - created: 2017-01-28T00:48:33.328518706Z - description: Chart for InfluxDB - digest: a64fad23b1d02c8f14955f652f60a36ca2bc9f01fb5f4d80cd88bcf9f96a7300 - engine: gotpl - home: https://www.influxdata.com/time-series-platform/influxdb/ - keywords: - - influxdb - - database - - timeseries - maintainers: - - email: jack@influxdb.com - name: Jack Zampolin - name: influxdb - urls: - - https://kubernetes-charts.storage.googleapis.com/influxdb-0.1.0.tgz - version: 0.1.0 - jasperreports: - - created: 2017-03-09T19:33:31.137658719Z - description: The JasperReports server can be used as a stand-alone or embedded - reporting and BI server that offers web-based reporting, analytic tools and - visualization, and a dashboard feature for compiling multiple custom views - digest: d4a62f7ace55256852e5c650a56ccf671633c4f223180d304cfb03b9cd7993aa - engine: gotpl - home: http://community.jaspersoft.com/project/jasperreports-server - icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-110x117.png - keywords: - - business intelligence - - java - - jasper - - reporting - - analytic - - visualization - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: jasperreports - sources: - - https://github.com/bitnami/bitnami-docker-jasperreports - urls: - - https://kubernetes-charts.storage.googleapis.com/jasperreports-0.1.4.tgz - version: 0.1.4 - - created: 2017-03-08T19:03:31.722665089Z - description: The JasperReports server can be used as a stand-alone or embedded - reporting and BI server that offers web-based reporting, analytic tools and - visualization, and a dashboard feature for compiling multiple custom views - digest: 99af0fca7ef1c475b239f2c8fc2dee6b040ea76b3c30bba1431f358df873aa49 - engine: gotpl - home: http://community.jaspersoft.com/project/jasperreports-server - icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-110x117.png - keywords: - - business intelligence - - java - - jasper - - reporting - - analytic - - visualization - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: jasperreports - sources: - - https://github.com/bitnami/bitnami-docker-jasperreports - urls: - - https://kubernetes-charts.storage.googleapis.com/jasperreports-0.1.3.tgz - version: 0.1.3 - - created: 2017-02-13T21:33:27.741967589Z - description: The JasperReports server can be used as a stand-alone or embedded - reporting and BI server that offers web-based reporting, analytic tools and - visualization, and a dashboard feature for compiling multiple custom views - digest: f01e53d1b89c4fb1fcd9702cd5f4e48d77607aed65f249e1f94b8b21f7eef3f4 - engine: gotpl - home: http://community.jaspersoft.com/project/jasperreports-server - icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-110x117.png - keywords: - - business intelligence - - java - - jasper - - reporting - - analytic - - visualization - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: jasperreports - sources: - - https://github.com/bitnami/bitnami-docker-jasperreports - urls: - - https://kubernetes-charts.storage.googleapis.com/jasperreports-0.1.2.tgz - version: 0.1.2 - - created: 2017-01-28T01:33:32.784491819Z - description: The JasperReports server can be used as a stand-alone or embedded - reporting and BI server that offers web-based reporting, analytic tools and - visualization, and a dashboard feature for compiling multiple custom views - digest: 5cc4af8c88691d7030602c97be2ccbc125ef11129b361da0aa236a127c31b965 - engine: gotpl - home: http://community.jaspersoft.com/project/jasperreports-server - icon: https://bitnami.com/assets/stacks/jasperserver/img/jasperserver-stack-110x117.png - keywords: - - business intelligence - - java - - jasper - - reporting - - analytic - - visualization - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: jasperreports - sources: - - https://github.com/bitnami/bitnami-docker-jasperreports - urls: - - https://kubernetes-charts.storage.googleapis.com/jasperreports-0.1.1.tgz - version: 0.1.1 - jenkins: - - created: 2017-03-09T19:33:31.13828687Z - description: Open source continuous integration server. It supports multiple SCM - tools including CVS, Subversion and Git. It can execute Apache Ant and Apache - Maven-based projects as well as arbitrary scripts. - digest: 6c5039f7ab62e7f74bb902f5804814f66733c535908b4ffae1cf759efa3c6f24 - home: https://jenkins.io/ - icon: https://wiki.jenkins-ci.org/download/attachments/2916393/logo.png - maintainers: - - email: lachlan@deis.com - name: Lachlan Evenson - - email: viglesias@google.com - name: Vic Iglesias - name: jenkins - sources: - - https://github.com/jenkinsci/jenkins - - https://github.com/jenkinsci/docker-jnlp-slave - urls: - - https://kubernetes-charts.storage.googleapis.com/jenkins-0.1.14.tgz - version: 0.1.14 - - created: 2017-02-13T22:18:28.949796594Z - description: Open source continuous integration server. It supports multiple SCM - tools including CVS, Subversion and Git. It can execute Apache Ant and Apache - Maven-based projects as well as arbitrary scripts. - digest: 90aa0fe9bac319690c871327dff6fee85e7de117e961dfa95ba12abedec4e99b - home: https://jenkins.io/ - icon: https://wiki.jenkins-ci.org/download/attachments/2916393/logo.png - maintainers: - - email: lachlan@deis.com - name: Lachlan Evenson - - email: viglesias@google.com - name: Vic Iglesias - name: jenkins - sources: - - https://github.com/jenkinsci/jenkins - - https://github.com/jenkinsci/docker-jnlp-slave - urls: - - https://kubernetes-charts.storage.googleapis.com/jenkins-0.1.13.tgz - version: 0.1.13 - - created: 2017-02-13T21:48:52.587710548Z - description: Open source continuous integration server. It supports multiple SCM - tools including CVS, Subversion and Git. It can execute Apache Ant and Apache - Maven-based projects as well as arbitrary scripts. - digest: 92224a4dcf96772652e91cee6369a08f21f4ba7d1513ee458b5724720f7045ca - home: https://jenkins.io/ - icon: https://wiki.jenkins-ci.org/download/attachments/2916393/logo.png - maintainers: - - email: lachlan@deis.com - name: Lachlan Evenson - - email: viglesias@google.com - name: Vic Iglesias - name: jenkins - sources: - - https://github.com/jenkinsci/jenkins - - https://github.com/jenkinsci/docker-jnlp-slave - urls: - - https://kubernetes-charts.storage.googleapis.com/jenkins-0.1.12.tgz - version: 0.1.12 - - created: 2017-02-13T21:03:28.21318035Z - description: Open source continuous integration server. It supports multiple SCM - tools including CVS, Subversion and Git. It can execute Apache Ant and Apache - Maven-based projects as well as arbitrary scripts. - digest: c75cadf6bc32c90cfc8a61c1f233884004670c8583edefcfcaa43b5573422923 - home: https://jenkins.io/ - icon: https://wiki.jenkins-ci.org/download/attachments/2916393/logo.png - maintainers: - - email: lachlan@deis.com - name: Lachlan Evenson - - email: viglesias@google.com - name: Vic Iglesias - name: jenkins - sources: - - https://github.com/jenkinsci/jenkins - - https://github.com/jenkinsci/docker-jnlp-slave - urls: - - https://kubernetes-charts.storage.googleapis.com/jenkins-0.1.10.tgz - version: 0.1.10 - - created: 2017-02-13T17:03:30.11276321Z - description: Open source continuous integration server. It supports multiple SCM - tools including CVS, Subversion and Git. It can execute Apache Ant and Apache - Maven-based projects as well as arbitrary scripts. - digest: 47f32f975f942607a4b4ca05bd804ece5e2381840508d049251ca692e83080c0 - home: https://jenkins.io/ - icon: https://wiki.jenkins-ci.org/download/attachments/2916393/logo.png - maintainers: - - email: lachlan@deis.com - name: Lachlan Evenson - - email: viglesias@google.com - name: Vic Iglesias - name: jenkins - sources: - - https://github.com/jenkinsci/jenkins - - https://github.com/jenkinsci/docker-jnlp-slave - urls: - - https://kubernetes-charts.storage.googleapis.com/jenkins-0.1.9.tgz - version: 0.1.9 - - created: 2017-02-13T04:18:31.534794405Z - description: Open source continuous integration server. It supports multiple SCM - tools including CVS, Subversion and Git. It can execute Apache Ant and Apache - Maven-based projects as well as arbitrary scripts. - digest: 0764541a4165016e68bef6de1f405964b58ebb2b43b4d738f4bbbbad794b5df8 - home: https://jenkins.io/ - icon: https://wiki.jenkins-ci.org/download/attachments/2916393/logo.png - maintainers: - - email: lachlan@deis.com - name: Lachlan Evenson - - email: viglesias@google.com - name: Vic Iglesias - name: jenkins - sources: - - https://github.com/jenkinsci/jenkins - - https://github.com/jenkinsci/docker-jnlp-slave - urls: - - https://kubernetes-charts.storage.googleapis.com/jenkins-0.1.8.tgz - version: 0.1.8 - - created: 2017-01-27T21:48:32.069740444Z - description: A Jenkins Helm chart for Kubernetes. - digest: c29819a435e9474277846492930e910c9f7c0605717421c4efe411ce476283ab - home: https://jenkins.io/ - icon: https://wiki.jenkins-ci.org/download/attachments/2916393/logo.png - maintainers: - - email: lachlan@deis.com - name: Lachlan Evenson - - email: viglesias@google.com - name: Vic Iglesias - name: jenkins - sources: - - https://github.com/jenkinsci/jenkins - - https://github.com/jenkinsci/docker-jnlp-slave - urls: - - https://kubernetes-charts.storage.googleapis.com/jenkins-0.1.7.tgz - version: 0.1.7 - - created: 2017-01-04T00:48:19.7378014Z - description: A Jenkins Helm chart for Kubernetes. - digest: 58ddd6442c8534de79a8d5eaca48263c744ca9fa6e9af7ceb28d1fda9b88ddb5 - home: https://jenkins.io/ - icon: https://wiki.jenkins-ci.org/download/attachments/2916393/logo.png - maintainers: - - email: lachlan@deis.com - name: Lachlan Evenson - - email: viglesias@google.com - name: Vic Iglesias - name: jenkins - sources: - - https://github.com/jenkinsci/jenkins - - https://github.com/jenkinsci/docker-jnlp-slave - urls: - - https://kubernetes-charts.storage.googleapis.com/jenkins-0.1.6.tgz - version: 0.1.6 - - created: 2016-12-19T22:03:51.103057889Z - description: A Jenkins Helm chart for Kubernetes. - digest: 2c8dff77b7ad736ac54e5335f5d52bfacaf7ea2ad97558da507b7f5bb9f4d549 - home: https://jenkins.io/ - icon: https://wiki.jenkins-ci.org/download/attachments/2916393/logo.png - maintainers: - - email: lachlan@deis.com - name: Lachlan Evenson - - email: viglesias@google.com - name: Vic Iglesias - name: jenkins - sources: - - https://github.com/jenkinsci/jenkins - - https://github.com/jenkinsci/docker-jnlp-slave - urls: - - https://kubernetes-charts.storage.googleapis.com/jenkins-0.1.5.tgz - version: 0.1.5 - - created: 2016-12-09T18:48:20.183887307Z - description: A Jenkins Helm chart for Kubernetes. - digest: 0b7016624acec8d66f6d919611e8f1c9853a5475c9801c3da6e50b7ce044ed57 - home: https://jenkins.io/ - icon: https://wiki.jenkins-ci.org/download/attachments/2916393/logo.png - maintainers: - - email: lachlan@deis.com - name: Lachlan Evenson - - email: viglesias@google.com - name: Vic Iglesias - name: jenkins - sources: - - https://github.com/jenkinsci/jenkins - - https://github.com/jenkinsci/docker-jnlp-slave - urls: - - https://kubernetes-charts.storage.googleapis.com/jenkins-0.1.4.tgz - version: 0.1.4 - - created: 2016-12-05T18:33:22.028569484Z - description: A Jenkins Helm chart for Kubernetes. - digest: 82b53a4c90ac2cf71bb41d870939ce1e980192e1407ba8825051c0ed98c04906 - home: https://jenkins.io/ - icon: https://wiki.jenkins-ci.org/download/attachments/2916393/logo.png - maintainers: - - email: lachlan@deis.com - name: Lachlan Evenson - - email: viglesias@google.com - name: Vic Iglesias - name: jenkins - sources: - - https://github.com/jenkinsci/jenkins - - https://github.com/jenkinsci/docker-jnlp-slave - urls: - - https://kubernetes-charts.storage.googleapis.com/jenkins-0.1.1.tgz - version: 0.1.1 - - created: 2016-10-19T00:03:14.028672648Z - description: A Jenkins Helm chart for Kubernetes. - digest: ea97fbfeaf9b9701d71dbc2b6fa50bff25a33f0565233d81170a6ac225d22ab4 - home: https://jenkins.io/ - icon: https://wiki.jenkins-ci.org/download/attachments/2916393/logo.png - maintainers: - - email: lachlan@deis.com - name: Lachlan Evenson - - email: viglesias@google.com - name: Vic Iglesias - name: jenkins - sources: - - https://github.com/jenkinsci/jenkins - - https://github.com/jenkinsci/docker-jnlp-slave - urls: - - https://kubernetes-charts.storage.googleapis.com/jenkins-0.1.0.tgz - version: 0.1.0 - joomla: - - created: 2017-03-09T19:33:31.139676983Z - description: PHP content management system (CMS) for publishing web content - digest: f9dedab2fc2dbf170cf45b2c230baa6d20aad9a6f8ccfcb09c459602fc5213dc - engine: gotpl - home: http://www.joomla.org/ - icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png - keywords: - - joomla - - cms - - blog - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: joomla - sources: - - https://github.com/bitnami/bitnami-docker-joomla - urls: - - https://kubernetes-charts.storage.googleapis.com/joomla-0.4.5.tgz - version: 0.4.5 - - created: 2017-03-02T19:33:28.178324258Z - description: PHP content management system (CMS) for publishing web content - digest: 1e067e459873ae832d54ff516a3420f7f0e16ecd8f72f4c4f02be22e47702077 - engine: gotpl - home: http://www.joomla.org/ - icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png - keywords: - - joomla - - cms - - blog - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: joomla - sources: - - https://github.com/bitnami/bitnami-docker-joomla - urls: - - https://kubernetes-charts.storage.googleapis.com/joomla-0.4.4.tgz - version: 0.4.4 - - created: 2017-02-27T16:48:32.159029074Z - description: PHP content management system (CMS) for publishing web content - digest: 9a99b15e83e18955eb364985cd545659f1176ef203ac730876dfe39499edfb18 - engine: gotpl - home: http://www.joomla.org/ - icon: https://bitnami.com/assets/stacks/joomla/img/joomla-stack-220x234.png - keywords: - - joomla - - cms - - blog - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: joomla - sources: - - https://github.com/bitnami/bitnami-docker-joomla - urls: - - https://kubernetes-charts.storage.googleapis.com/joomla-0.4.3.tgz - version: 0.4.3 - - created: 2017-02-11T00:18:52.272598223Z - description: PHP content management system (CMS) for publishing web content - digest: 07c3a16eb674ffc74fe5b2b16191b8bb24c63bdae9bce9710bda1999920c46fc - engine: gotpl - home: http://www.joomla.org/ - keywords: - - joomla - - cms - - blog - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: joomla - sources: - - https://github.com/bitnami/bitnami-docker-joomla - urls: - - https://kubernetes-charts.storage.googleapis.com/joomla-0.4.2.tgz - version: 0.4.2 - - created: 2017-01-21T00:18:31.345952551Z - description: PHP content management system (CMS) for publishing web content - digest: 95fbe272015941544609eee90b3bffd5172bfdec10be13636510caa8478a879e - engine: gotpl - home: http://www.joomla.org/ - keywords: - - joomla - - cms - - blog - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: joomla - sources: - - https://github.com/bitnami/bitnami-docker-joomla - urls: - - https://kubernetes-charts.storage.googleapis.com/joomla-0.4.1.tgz - version: 0.4.1 - - created: 2016-12-09T18:48:20.18539038Z - description: PHP content management system (CMS) for publishing web content - digest: 0a01ea051ec15274932c8d82076c1a9fd62584b0fb916a81372319bef223c20e - engine: gotpl - home: http://www.joomla.org/ - keywords: - - joomla - - cms - - blog - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: joomla - sources: - - https://github.com/bitnami/bitnami-docker-joomla - urls: - - https://kubernetes-charts.storage.googleapis.com/joomla-0.4.0.tgz - version: 0.4.0 - kapacitor: - - created: 2017-03-09T19:33:31.14057086Z - description: InfluxDB's native data processing engine. It can process both stream - and batch data from InfluxDB. - digest: c592b3bf2dec92c2273057b984b7289c17032dc578ea0f2ec86aeb5e838a7047 - engine: gotpl - home: https://www.influxdata.com/time-series-platform/kapacitor/ - keywords: - - kapacitor - - stream - - etl - - timeseries - maintainers: - - email: jack@influxdb.com - name: Jack Zampolin - name: kapacitor - sources: - - https://github.com/influxdata/kapacitor - urls: - - https://kubernetes-charts.storage.googleapis.com/kapacitor-0.2.1.tgz - version: 0.2.1 - - created: 2017-02-13T21:48:52.58883187Z - description: InfluxDB's native data processing engine. It can process both stream - and batch data from InfluxDB. - digest: 18971c9c5b3805830f72fdfacd6c1dfc173db4797994f61b3666296b67abe70a - engine: gotpl - home: https://www.influxdata.com/time-series-platform/kapacitor/ - keywords: - - kapacitor - - stream - - etl - - timeseries - maintainers: - - email: jack@influxdb.com - name: Jack Zampolin - name: kapacitor - sources: - - https://github.com/influxdata/kapacitor - urls: - - https://kubernetes-charts.storage.googleapis.com/kapacitor-0.1.2.tgz - version: 0.1.2 - - created: 2017-02-13T21:03:28.215149313Z - description: Chart for Chronograf - digest: e0d29608602df25a9352629afd3fd7615e01a23549e1d1eba8101ee1b725e528 - engine: gotpl - home: https://www.influxdata.com/time-series-platform/kapacitor/ - keywords: - - kapacitor - - stream - - etl - - timeseries - maintainers: - - email: jack@influxdb.com - name: Jack Zampolin - name: kapacitor - urls: - - https://kubernetes-charts.storage.googleapis.com/kapacitor-0.1.1.tgz - version: 0.1.1 - - created: 2017-01-28T01:33:32.786133788Z - description: Chart for Chronograf - digest: efde65696634d3bf1dc4c9caae44e68f7ed8c7599aab809c8cdd0fde7e4f9efc - engine: gotpl - home: https://www.influxdata.com/time-series-platform/kapacitor/ - keywords: - - kapacitor - - stream - - etl - - timeseries - maintainers: - - email: jack@influxdb.com - name: Jack Zampolin - name: kapacitor - urls: - - https://kubernetes-charts.storage.googleapis.com/kapacitor-0.1.0.tgz - version: 0.1.0 - kube-lego: - - apiVersion: v1 - created: 2017-03-09T19:33:31.140975497Z - description: Automatically requests certificates from Let's Encrypt - digest: 0110b8c36f6ad016684ef904b5e514751ffa7a89ba7b88cf4a8376c889e03693 - engine: gotpl - keywords: - - kube-lego - - letsencrypt - maintainers: - - email: jack.zampolin@gmail.com - name: Jack Zampolin - - email: mgoodness@gmail.com - name: Michael Goodness - name: kube-lego - sources: - - https://github.com/jetstack/kube-lego/tree/master/examples/nginx - urls: - - https://kubernetes-charts.storage.googleapis.com/kube-lego-0.1.7.tgz - version: 0.1.7 - - apiVersion: v1 - created: 2017-03-02T19:33:28.179029307Z - description: Automatically requests certificates from Let's Encrypt - digest: 275265fda80ccc62376ebd3a200bbea94b105cbf3481efcc726d6a33d73da8d0 - engine: gotpl - keywords: - - kube-lego - - letsencrypt - maintainers: - - email: jack.zampolin@gmail.com - name: Jack Zampolin - - email: mgoodness@gmail.com - name: Michael Goodness - name: kube-lego - sources: - - https://github.com/jetstack/kube-lego/tree/master/examples/nginx - urls: - - https://kubernetes-charts.storage.googleapis.com/kube-lego-0.1.6.tgz - version: 0.1.6 - - apiVersion: v1 - created: 2017-02-27T17:33:27.264070807Z - description: Automatically requests certificates from Let's Encrypt - digest: 62de296cc21c6b286097de9ac389033e18a4cd3cf414cd97b7a02d4c3be14d6d - engine: gotpl - keywords: - - kube-lego - - letsencrypt - maintainers: - - email: jack.zampolin@gmail.com - name: Jack Zampolin - - email: mgoodness@gmail.com - name: Michael Goodness - name: kube-lego - sources: - - https://github.com/jetstack/kube-lego/tree/master/examples/nginx - urls: - - https://kubernetes-charts.storage.googleapis.com/kube-lego-0.1.5.tgz - version: 0.1.5 - - apiVersion: v1 - created: 2017-02-14T15:48:28.578398517Z - description: Automatically requests certificates from Let's Encrypt - digest: 1bc993b68eb51fb00e4eb18a65df9e2182f895bd46134d6ddfdc0dd3b6432a98 - engine: gotpl - keywords: - - kube-lego - - letsencrypt - maintainers: - - email: jack.zampolin@gmail.com - name: Jack Zampolin - - email: mgoodness@gmail.com - name: Michael Goodness - name: kube-lego - sources: - - https://github.com/jetstack/kube-lego/tree/master/examples/nginx - urls: - - https://kubernetes-charts.storage.googleapis.com/kube-lego-0.1.4.tgz - version: 0.1.4 - - apiVersion: v1 - created: 2017-02-11T00:48:25.354730418Z - description: Automatically requests certificates from Let's Encrypt - digest: d4b3694951c2bb42b356217a8f12870bd3806dac4de3390056279998fd634c34 - engine: gotpl - keywords: - - kube-lego - - letsencrypt - maintainers: - - email: jack.zampolin@gmail.com - name: Jack Zampolin - - email: mgoodness@gmail.com - name: Michael Goodness - name: kube-lego - sources: - - https://github.com/jetstack/kube-lego/tree/master/examples/nginx - urls: - - https://kubernetes-charts.storage.googleapis.com/kube-lego-0.1.3.tgz - version: 0.1.3 - kube2iam: - - created: 2017-03-09T19:33:31.141404081Z - description: Provide IAM credentials to pods based on annotations. - digest: 2035d8dfae5733fa475914694cd060e28954b1f5c930b6c4800ee165d23abc46 - engine: gotpl - keywords: - - kube2iam - - aws - - iam - - security - maintainers: - - email: jm.carp@gmail.com - name: Josh Carp - - email: michael.haselton@gmail.com - name: Michael Haselton - - email: mgoodness@gmail.com - name: Michael Goodness - name: kube2iam - sources: - - https://github.com/jtblin/kube2iam - urls: - - https://kubernetes-charts.storage.googleapis.com/kube2iam-0.2.1.tgz - version: 0.2.1 - - created: 2017-03-02T18:48:30.431985789Z - description: Provide IAM credentials to pods based on annotations. - digest: 5d2226fb101b800fc5a6edb5566d329880c604d75f4245da55f47027bcf5546e - engine: gotpl - keywords: - - kube2iam - - aws - - iam - - security - maintainers: - - email: jm.carp@gmail.com - name: Josh Carp - - email: michael.haselton@gmail.com - name: Michael Haselton - - email: mgoodness@gmail.com - name: Michael Goodness - name: kube2iam - sources: - - https://github.com/jtblin/kube2iam - urls: - - https://kubernetes-charts.storage.googleapis.com/kube2iam-0.2.0.tgz - version: 0.2.0 - - created: 2017-02-13T17:03:30.115672844Z - description: Provide IAM credentials to containers running inside a kubernetes - cluster based on annotations. - digest: 63d913fb8f31c287b1f1d45d310517c0b22597ecdaef19d7ad2520bff990969a - engine: gotpl - keywords: - - kube2iam - - aws - - iam - - security - maintainers: - - email: jm.carp@gmail.com - name: Josh Carp - - email: michael.haselton@gmail.com - name: Michael Haselton - name: kube2iam - sources: - - https://github.com/jtblin/kube2iam - urls: - - https://kubernetes-charts.storage.googleapis.com/kube2iam-0.1.1.tgz - version: 0.1.1 - - created: 2017-01-19T00:33:27.789172853Z - description: Provide IAM credentials to containers running inside a kubernetes - cluster based on annotations. - digest: b4de5bddfa0af6737ea91d9b3a9bcfc3a0e5a656045e06038505613b214120fc - engine: gotpl - keywords: - - kube2iam - - aws - - iam - - security - maintainers: - - email: jm.carp@gmail.com - name: Josh Carp - - email: michael.haselton@gmail.com - name: Michael Haselton - name: kube2iam - sources: - - https://github.com/jtblin/kube2iam - urls: - - https://kubernetes-charts.storage.googleapis.com/kube2iam-0.1.0.tgz - version: 0.1.0 - linkerd: - - apiVersion: v1 - created: 2017-03-09T19:33:31.141727971Z - description: Service mesh for cloud native apps - digest: f9f2287d026c6de3a522bdcffdff061f81a8e64274da4acefdc9d2177b603570 - home: https://linkerd.io/ - icon: https://pbs.twimg.com/profile_images/690258997237014528/KNgQd9GL_400x400.png - maintainers: - - email: viglesias@google.com - name: Vic Iglesias - name: linkerd - sources: - - https://github.com/BuoyantIO/linkerd - urls: - - https://kubernetes-charts.storage.googleapis.com/linkerd-0.1.1.tgz - version: 0.1.1 - - apiVersion: v1 - created: 2017-02-13T04:33:52.299092507Z - description: Service mesh for cloud native apps - digest: 147759e4982f1dffce894e0d4242fb914d21014700a7d9891e8dc352318633fa - home: https://linkerd.io/ - maintainers: - - email: viglesias@google.com - name: Vic Iglesias - name: linkerd - sources: - - https://github.com/BuoyantIO/linkerd - urls: - - https://kubernetes-charts.storage.googleapis.com/linkerd-0.1.0.tgz - version: 0.1.0 - magento: - - created: 2017-03-09T19:33:31.142591331Z - description: A feature-rich flexible e-commerce solution. It includes transaction - options, multi-store functionality, loyalty programs, product categorization - and shopper filtering, promotion rules, and more. - digest: 311a98182281b981f60fbd446b42f6af4b86e0bac9445bf2248b1b47dfce5933 - engine: gotpl - home: https://magento.com/ - icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-110x117.png - keywords: - - magento - - e-commerce - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: magento - sources: - - https://github.com/bitnami/bitnami-docker-magento - urls: - - https://kubernetes-charts.storage.googleapis.com/magento-0.4.4.tgz - version: 0.4.4 - - created: 2017-03-02T19:33:28.180428252Z - description: A feature-rich flexible e-commerce solution. It includes transaction - options, multi-store functionality, loyalty programs, product categorization - and shopper filtering, promotion rules, and more. - digest: fccfa89493a977a2f898a5e6d3c6fa4fda15faf0dc0a9e48772744a32c2b1d24 - engine: gotpl - home: https://magento.com/ - icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-110x117.png - keywords: - - magento - - e-commerce - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: magento - sources: - - https://github.com/bitnami/bitnami-docker-magento - urls: - - https://kubernetes-charts.storage.googleapis.com/magento-0.4.3.tgz - version: 0.4.3 - - created: 2017-02-27T16:48:32.161186722Z - description: A feature-rich flexible e-commerce solution. It includes transaction - options, multi-store functionality, loyalty programs, product categorization - and shopper filtering, promotion rules, and more. - digest: fb33cafa4874855419ea3178dc0660a856ed6f8b581b984f38e86701d54e54a6 - engine: gotpl - home: https://magento.com/ - icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-110x117.png - keywords: - - magento - - e-commerce - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: magento - sources: - - https://github.com/bitnami/bitnami-docker-magento - urls: - - https://kubernetes-charts.storage.googleapis.com/magento-0.4.2.tgz - version: 0.4.2 - - created: 2017-01-21T00:18:31.349108265Z - description: A feature-rich flexible e-commerce solution. It includes transaction - options, multi-store functionality, loyalty programs, product categorization - and shopper filtering, promotion rules, and more. - digest: c597107a5cf512d616e5e4134e562f8fcc6e79ad1f78241e9a40ded77e77ef62 - engine: gotpl - home: https://magento.com/ - icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-110x117.png - keywords: - - magento - - e-commerce - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: magento - sources: - - https://github.com/bitnami/bitnami-docker-magento - urls: - - https://kubernetes-charts.storage.googleapis.com/magento-0.4.1.tgz - version: 0.4.1 - - created: 2017-01-04T00:48:19.74048297Z - description: A feature-rich flexible e-commerce solution. It includes transaction - options, multi-store functionality, loyalty programs, product categorization - and shopper filtering, promotion rules, and more. - digest: 526115583b8ae741f6819c2a0d3e719a6622a63a0a2e9918e56d2ebaa6ad498b - engine: gotpl - home: https://magento.com/ - icon: https://bitnami.com/assets/stacks/magento/img/magento-stack-110x117.png - keywords: - - magento - - e-commerce - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: magento - sources: - - https://github.com/bitnami/bitnami-docker-magento - urls: - - https://kubernetes-charts.storage.googleapis.com/magento-0.4.0.tgz - version: 0.4.0 - mariadb: - - created: 2017-03-09T19:33:31.14307293Z - description: Fast, reliable, scalable, and easy to use open-source relational - database system. MariaDB Server is intended for mission-critical, heavy-load - production systems as well as for embedding into mass-deployed software. - digest: 587d7ef318ee1229d14e3b783c3e825f90f274f56b2eb62f1c7126f69fec6fc2 - engine: gotpl - home: https://mariadb.org - icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png - keywords: - - mariadb - - mysql - - database - - sql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mariadb - sources: - - https://github.com/bitnami/bitnami-docker-mariadb - urls: - - https://kubernetes-charts.storage.googleapis.com/mariadb-0.5.10.tgz - version: 0.5.10 - - created: 2017-03-08T19:03:31.728285865Z - description: Fast, reliable, scalable, and easy to use open-source relational - database system. MariaDB Server is intended for mission-critical, heavy-load - production systems as well as for embedding into mass-deployed software. - digest: cfec18e7be68a616a5e4944c21ed0b65dab1701cf7182d0d1bdea83df6a77ab1 - engine: gotpl - home: https://mariadb.org - icon: https://bitnami.com/assets/stacks/mariadb/img/mariadb-stack-220x234.png - keywords: - - mariadb - - mysql - - database - - sql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mariadb - sources: - - https://github.com/bitnami/bitnami-docker-mariadb - urls: - - https://kubernetes-charts.storage.googleapis.com/mariadb-0.5.9.tgz - version: 0.5.9 - - created: 2017-02-11T00:18:52.27620633Z - description: Chart for MariaDB - digest: 33990fb57b2fafb4396498e02a8083f6a476cf0b465a4a52905a67aab73f3f43 - engine: gotpl - home: https://mariadb.org - keywords: - - mariadb - - mysql - - database - - sql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mariadb - sources: - - https://github.com/bitnami/bitnami-docker-mariadb - urls: - - https://kubernetes-charts.storage.googleapis.com/mariadb-0.5.8.tgz - version: 0.5.8 - - created: 2017-01-31T01:03:26.972704179Z - description: Chart for MariaDB - digest: 177a882b4248d6ebb2e72e125a3be775085bf082e4eb8f4359fee9e8640ede50 - engine: gotpl - home: https://mariadb.org - keywords: - - mariadb - - mysql - - database - - sql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mariadb - sources: - - https://github.com/bitnami/bitnami-docker-mariadb - urls: - - https://kubernetes-charts.storage.googleapis.com/mariadb-0.5.7.tgz - version: 0.5.7 - - created: 2017-01-27T22:33:30.411626628Z - description: Chart for MariaDB - digest: 730d179ab0d5922494e3c21594ce7b4f118f7fe796071dfcfdbbc2714ada7d15 - engine: gotpl - home: https://mariadb.org - keywords: - - mariadb - - mysql - - database - - sql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mariadb - sources: - - https://github.com/bitnami/bitnami-docker-mariadb - urls: - - https://kubernetes-charts.storage.googleapis.com/mariadb-0.5.6.tgz - version: 0.5.6 - - created: 2016-12-15T23:18:25.557355931Z - description: Chart for MariaDB - digest: c7811fad8165eb5d57eb55ad4e58d63e949d2f710c0fbbcd28cca11bb6af6de6 - engine: gotpl - home: https://mariadb.org - keywords: - - mariadb - - mysql - - database - - sql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mariadb - sources: - - https://github.com/bitnami/bitnami-docker-mariadb - urls: - - https://kubernetes-charts.storage.googleapis.com/mariadb-0.5.5.tgz - version: 0.5.5 - - created: 2016-12-09T18:48:20.185787408Z - description: Chart for MariaDB - digest: c6b73c5146d085a202f838741526fe5fdc2fae55b8f5f17c0c42fd195c65311f - engine: gotpl - home: https://mariadb.org - keywords: - - mariadb - - mysql - - database - - sql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mariadb - sources: - - https://github.com/bitnami/bitnami-docker-mariadb - urls: - - https://kubernetes-charts.storage.googleapis.com/mariadb-0.5.4.tgz - version: 0.5.4 - - created: 2016-11-23T00:33:20.016012859Z - description: Chart for MariaDB - digest: 38786f4f6fe4fb7a2dcbc38aa0bfea72e40e4d9766e1679942af60e25b5ba9bd - engine: gotpl - home: https://mariadb.org - keywords: - - mariadb - - mysql - - database - - sql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mariadb - sources: - - https://github.com/bitnami/bitnami-docker-mariadb - urls: - - https://kubernetes-charts.storage.googleapis.com/mariadb-0.5.3.tgz - version: 0.5.3 - - created: 2016-11-03T19:33:29.120356141Z - description: Chart for MariaDB - digest: 8eb24c65fbdb75711a8ffd8f8f6ed206951cdc3a24d74a355121bc11c6c02f3b - engine: gotpl - home: https://mariadb.org - keywords: - - mariadb - - mysql - - database - - sql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mariadb - sources: - - https://github.com/bitnami/bitnami-docker-mariadb - urls: - - https://kubernetes-charts.storage.googleapis.com/mariadb-0.5.2.tgz - version: 0.5.2 - - created: 2016-10-19T00:03:14.031007257Z - description: Chart for MariaDB - digest: 6544dbf62586f570762a3a469f0086fe595379454fb46a53d001206a0e282268 - engine: gotpl - home: https://mariadb.org - keywords: - - mariadb - - mysql - - database - - sql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mariadb - sources: - - https://github.com/bitnami/bitnami-docker-mariadb - urls: - - https://kubernetes-charts.storage.googleapis.com/mariadb-0.5.1.tgz - version: 0.5.1 - - created: 2016-10-19T00:03:14.030598543Z - description: Chart for MariaDB - digest: c9f67f8140b3e7243d479f819d4ec8b2e992ee462b8fa579b920e86066955312 - engine: gotpl - home: https://mariadb.org - keywords: - - mariadb - - mysql - - database - - sql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mariadb - sources: - - https://github.com/bitnami/bitnami-docker-mariadb - urls: - - https://kubernetes-charts.storage.googleapis.com/mariadb-0.5.0.tgz - version: 0.5.0 - - created: 2016-10-19T00:03:14.03012509Z - description: Chart for MariaDB - digest: fe8adb0730567ad8cd63501ac18b178ec2a9a590d43dd7ad91fd2d5fcf6114be - engine: gotpl - home: https://mariadb.org - keywords: - - mariadb - - mysql - - database - - sql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mariadb - sources: - - https://github.com/bitnami/bitnami-docker-mariadb - urls: - - https://kubernetes-charts.storage.googleapis.com/mariadb-0.4.0.tgz - version: 0.4.0 - - created: 2016-10-19T00:03:14.029775557Z - description: Chart for MariaDB - digest: 47fe08909187da025e7e86e9534a736df11e2629c5c123178113fe776992e9e7 - engine: gotpl - home: https://mariadb.org - keywords: - - mariadb - - mysql - - database - - sql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mariadb - sources: - - https://github.com/bitnami/bitnami-docker-mariadb - urls: - - https://kubernetes-charts.storage.googleapis.com/mariadb-0.3.1.tgz - version: 0.3.1 - - created: 2016-10-19T00:03:14.02942396Z - description: Chart for MariaDB - digest: 7354d2672b3983e98fe5c31d96d2c3d9c73edefe642eb5e1981484804315c4bc - engine: gotpl - home: https://mariadb.org - keywords: - - mariadb - - mysql - - database - - sql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mariadb - sources: - - https://github.com/bitnami/bitnami-docker-mariadb - urls: - - https://kubernetes-charts.storage.googleapis.com/mariadb-0.3.0.tgz - version: 0.3.0 - mediawiki: - - created: 2017-03-09T19:33:31.143853494Z - description: Extremely powerful, scalable software and a feature-rich wiki implementation - that uses PHP to process and display data stored in a database. - digest: 0e419c2c5d87997f94a32da6597af3f3b52120dc1ec682dcbb6b238fb4825e06 - engine: gotpl - home: http://www.mediawiki.org/ - icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png - keywords: - - mediawiki - - wiki - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mediawiki - sources: - - https://github.com/bitnami/bitnami-docker-mediawiki - urls: - - https://kubernetes-charts.storage.googleapis.com/mediawiki-0.4.5.tgz - version: 0.4.5 - - created: 2017-03-08T19:03:31.729226516Z - description: Extremely powerful, scalable software and a feature-rich wiki implementation - that uses PHP to process and display data stored in a database. - digest: 6f4dde26737f7f1aa63ffda6c259ce388e3a3509225f90f334bfc3f0f7617bc1 - engine: gotpl - home: http://www.mediawiki.org/ - icon: https://bitnami.com/assets/stacks/mediawiki/img/mediawiki-stack-220x234.png - keywords: - - mediawiki - - wiki - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mediawiki - sources: - - https://github.com/bitnami/bitnami-docker-mediawiki - urls: - - https://kubernetes-charts.storage.googleapis.com/mediawiki-0.4.4.tgz - version: 0.4.4 - - created: 2017-02-13T04:18:31.539427547Z - description: Extremely powerful, scalable software and a feature-rich wiki implementation - that uses PHP to process and display data stored in a database. - digest: 0ba52b8c4c9e0bee3eb76fe625d2dc88729a1cdf41ace9d13cd4abc5b477cfb8 - engine: gotpl - home: http://www.mediawiki.org/ - keywords: - - mediawiki - - wiki - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mediawiki - sources: - - https://github.com/bitnami/bitnami-docker-mediawiki - urls: - - https://kubernetes-charts.storage.googleapis.com/mediawiki-0.4.3.tgz - version: 0.4.3 - - created: 2017-01-21T00:18:31.350311075Z - description: Extremely powerful, scalable software and a feature-rich wiki implementation - that uses PHP to process and display data stored in a database. - digest: f49df3e17f97b238743aad0376eb9db7e4a9bca3829a3a65d7bbb349344a73be - engine: gotpl - home: http://www.mediawiki.org/ - keywords: - - mediawiki - - wiki - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mediawiki - sources: - - https://github.com/bitnami/bitnami-docker-mediawiki - urls: - - https://kubernetes-charts.storage.googleapis.com/mediawiki-0.4.2.tgz - version: 0.4.2 - - created: 2016-12-15T21:18:24.670966268Z - description: Extremely powerful, scalable software and a feature-rich wiki implementation - that uses PHP to process and display data stored in a database. - digest: 339a90050d5cf4216140409349a356aa7cd8dc95e2cbdca06e4fdd11e87aa963 - engine: gotpl - home: http://www.mediawiki.org/ - keywords: - - mediawiki - - wiki - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mediawiki - sources: - - https://github.com/bitnami/bitnami-docker-mediawiki - urls: - - https://kubernetes-charts.storage.googleapis.com/mediawiki-0.4.1.tgz - version: 0.4.1 - - created: 2016-12-09T18:48:20.186416136Z - description: Extremely powerful, scalable software and a feature-rich wiki implementation - that uses PHP to process and display data stored in a database. - digest: 9617f13f51f5bb016a072f2a026c627420721a1c5b7cd22f32d6cd0c90f34eda - engine: gotpl - home: http://www.mediawiki.org/ - keywords: - - mediawiki - - wiki - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mediawiki - sources: - - https://github.com/bitnami/bitnami-docker-mediawiki - urls: - - https://kubernetes-charts.storage.googleapis.com/mediawiki-0.4.0.tgz - version: 0.4.0 - memcached: - - created: 2017-03-09T19:33:31.144202478Z - description: Free & open source, high-performance, distributed memory object caching - system. - digest: 36ceb2767094598171b2851ecda54bd43d862b9b81aa4b294f3d8c8d59ddd79c - engine: gotpl - home: http://memcached.org/ - icon: https://upload.wikimedia.org/wikipedia/en/thumb/2/27/Memcached.svg/1024px-Memcached.svg.png - keywords: - - memcached - - cache - maintainers: - - email: gtaylor@gc-taylor.com - name: Greg Taylor - name: memcached - sources: - - https://github.com/docker-library/memcached - urls: - - https://kubernetes-charts.storage.googleapis.com/memcached-0.4.1.tgz - version: 0.4.1 - - created: 2017-02-13T04:18:31.539713999Z - description: Chart for Memcached - digest: 2b918dd8129a9d706e58b3de459004e3367c05a162d3e3cdb031cb6818d5f820 - engine: gotpl - home: http://memcached.org/ - keywords: - - memcached - - cache - maintainers: - - email: gtaylor@gc-taylor.com - name: Greg Taylor - name: memcached - sources: - - https://github.com/docker-library/memcached - urls: - - https://kubernetes-charts.storage.googleapis.com/memcached-0.4.0.tgz - version: 0.4.0 - minecraft: - - created: 2017-03-09T19:33:31.144633166Z - description: Minecraft server - digest: 5a42451d7c2f69b7b77c40e91ef60ca284798bcab8aa5b97b1f3f2559612d443 - keywords: - - game - - server - maintainers: - - email: gtaylor@gc-taylor.com - name: Greg Taylor - name: minecraft - sources: - - https://hub.docker.com/r/itzg/minecraft-server/~/dockerfile/ - - https://github.com/itzg/dockerfiles - urls: - - https://kubernetes-charts.storage.googleapis.com/minecraft-0.1.2.tgz - version: 0.1.2 - - created: 2017-01-30T23:33:28.437640114Z - description: Minecraft server - digest: 87c2ef91c8feaee680bb26ba16362c6b366429e0f54119c40dbf7a5ce3f22553 - keywords: - - game - - server - maintainers: - - email: gtaylor@gc-taylor.com - name: Greg Taylor - name: minecraft - sources: - - https://hub.docker.com/r/itzg/minecraft-server/~/dockerfile/ - - https://github.com/itzg/dockerfiles - urls: - - https://kubernetes-charts.storage.googleapis.com/minecraft-0.1.1.tgz - version: 0.1.1 - - created: 2016-12-05T21:03:20.22190695Z - description: Minecraft server - digest: 2cd423a28eb8a0186fba171cc17dcbe6f5a53d1a99e4078f9713afed3b61cce6 - keywords: - - game - - server - maintainers: - - email: gtaylor@gc-taylor.com - name: Greg Taylor - name: minecraft - sources: - - https://hub.docker.com/r/itzg/minecraft-server/~/dockerfile/ - - https://github.com/itzg/dockerfiles - urls: - - https://kubernetes-charts.storage.googleapis.com/minecraft-0.1.0.tgz - version: 0.1.0 - minio: - - apiVersion: v1 - created: 2017-03-09T19:33:31.145132764Z - description: Distributed object storage server built for cloud applications and - devops. - digest: d19b721fcb5f0566cce4a259e296b957ba982e87343947e1cbdbe979c770378d - home: https://minio.io - icon: https://www.minio.io/logo/img/logo-dark.svg - keywords: - - storage - - object-storage - - S3 - maintainers: - - email: hello@acale.ph - name: Acaleph - - email: hello@minio.io - name: Minio - name: minio - sources: - - https://github.com/minio/minio - urls: - - https://kubernetes-charts.storage.googleapis.com/minio-0.0.4.tgz - version: 0.0.4 - - apiVersion: v1 - created: 2017-02-13T04:33:52.302413618Z - description: A Minio Helm chart for Kubernetes - digest: cd58148df0776329fe5f518c542759565cab29dbefbc43f6b0ffdac86c9b31a9 - home: https://minio.io - keywords: - - storage - - object-storage - - S3 - maintainers: - - email: hello@acale.ph - name: Acaleph - - email: hello@minio.io - name: Minio - name: minio - sources: - - https://github.com/minio/minio - urls: - - https://kubernetes-charts.storage.googleapis.com/minio-0.0.3.tgz - version: 0.0.3 - - apiVersion: v1 - created: 2017-02-03T20:18:29.15659791Z - description: A Minio Helm chart for Kubernetes - digest: 699003bf2ef4cbb570580887da980412c1b9d6d173636de5def6053c7ba29a2a - home: https://minio.io - keywords: - - storage - - object-storage - - S3 - maintainers: - - email: hello@acale.ph - name: Acaleph - - email: hello@minio.io - name: Minio - name: minio - sources: - - https://github.com/minio/minio - urls: - - https://kubernetes-charts.storage.googleapis.com/minio-0.0.2.tgz - version: 0.0.2 - - apiVersion: v1 - created: 2017-01-12T02:36:05.500400572Z - description: A Minio Helm chart for Kubernetes - digest: aed17de3622988f8366126e158c740535c8d3bc55a0a85a3dcfabf07ac1395e9 - home: https://minio.io - keywords: - - storage - - object-storage - - S3 - maintainers: - - email: hello@acale.ph - name: Acaleph - name: minio - sources: - - https://github.com/minio/minio - urls: - - https://kubernetes-charts.storage.googleapis.com/minio-0.0.1.tgz - version: 0.0.1 - mongodb: - - created: 2017-03-09T19:33:31.145494477Z - description: NoSQL document-oriented database that stores JSON-like documents - with dynamic schemas, simplifying the integration of data in content-driven - applications. - digest: cdc9fc28ff9139fcc6be015177e481f9d3765d6af284dce1999fc334cd7ef3a4 - engine: gotpl - home: https://mongodb.org - icon: https://bitnami.com/assets/stacks/mongodb/img/mongodb-stack-220x234.png - keywords: - - mongodb - - database - - nosql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mongodb - sources: - - https://github.com/bitnami/bitnami-docker-mongodb - urls: - - https://kubernetes-charts.storage.googleapis.com/mongodb-0.4.8.tgz - version: 0.4.8 - - created: 2017-03-08T19:03:31.731176002Z - description: NoSQL document-oriented database that stores JSON-like documents - with dynamic schemas, simplifying the integration of data in content-driven - applications. - digest: 7d334e12acf9327f58f9a890e884a61ad760da2b1081d4a79b5680bee055cdbd - engine: gotpl - home: https://mongodb.org - icon: https://bitnami.com/assets/stacks/mongodb/img/mongodb-stack-220x234.png - keywords: - - mongodb - - database - - nosql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mongodb - sources: - - https://github.com/bitnami/bitnami-docker-mongodb - urls: - - https://kubernetes-charts.storage.googleapis.com/mongodb-0.4.7.tgz - version: 0.4.7 - - created: 2017-02-14T03:48:27.566728756Z - description: NoSQL document-oriented database that stores JSON-like documents - with dynamic schemas, simplifying the integration of data in content-driven - applications. - digest: 27f9071cb81e9d3745776861f453db80b6ab6bf4507809f2e5c59e8a34d44939 - engine: gotpl - home: https://mongodb.org - icon: https://bitnami.com/assets/stacks/mongodb/img/mongodb-stack-220x234.png - keywords: - - mongodb - - database - - nosql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mongodb - sources: - - https://github.com/bitnami/bitnami-docker-mongodb - urls: - - https://kubernetes-charts.storage.googleapis.com/mongodb-0.4.6.tgz - version: 0.4.6 - - created: 2017-02-10T23:18:26.017406698Z - description: Chart for MongoDB - digest: 27a78b0c6300f4567975af18a3ca145940a716a53de42ed89c75872788d2848b - engine: gotpl - home: https://mongodb.org - keywords: - - mongodb - - database - - nosql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mongodb - sources: - - https://github.com/bitnami/bitnami-docker-mongodb - urls: - - https://kubernetes-charts.storage.googleapis.com/mongodb-0.4.5.tgz - version: 0.4.5 - - created: 2017-01-30T23:33:28.438574863Z - description: Chart for MongoDB - digest: 9bcc0e2aa1d7d8f8c2ce43ef9284af39e5794214d185577ed1baff07c1a019f4 - engine: gotpl - home: https://mongodb.org - keywords: - - mongodb - - database - - nosql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mongodb - sources: - - https://github.com/bitnami/bitnami-docker-mongodb - urls: - - https://kubernetes-charts.storage.googleapis.com/mongodb-0.4.4.tgz - version: 0.4.4 - - created: 2017-01-13T20:48:31.52900213Z - description: Chart for MongoDB - digest: be548ec183b8c44f031504864b85b7a0d48d745fa450bf733f89646c9cbbda44 - engine: gotpl - home: https://mongodb.org - keywords: - - mongodb - - database - - nosql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mongodb - sources: - - https://github.com/bitnami/bitnami-docker-mongodb - urls: - - https://kubernetes-charts.storage.googleapis.com/mongodb-0.4.3.tgz - version: 0.4.3 - - created: 2017-01-03T17:48:20.740456601Z - description: Chart for MongoDB - digest: 027dd50ff545309506daa0636a62d633071379040f8be080a403cb6d67399b0d - engine: gotpl - home: https://mongodb.org - keywords: - - mongodb - - database - - nosql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mongodb - sources: - - https://github.com/bitnami/bitnami-docker-mongodb - urls: - - https://kubernetes-charts.storage.googleapis.com/mongodb-0.4.2.tgz - version: 0.4.2 - - created: 2016-12-15T00:48:24.012807516Z - description: Chart for MongoDB - digest: 42e8e56c715ea3bd2b8f9c188f5a9aec48a87654fb5215c35728ddf6c33c7437 - engine: gotpl - home: https://mongodb.org - keywords: - - mongodb - - database - - nosql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mongodb - sources: - - https://github.com/bitnami/bitnami-docker-mongodb - urls: - - https://kubernetes-charts.storage.googleapis.com/mongodb-0.4.1.tgz - version: 0.4.1 - - created: 2016-12-09T18:48:20.187403991Z - description: Chart for MongoDB - digest: d5eabbe99b03b4f7f71c461580564e3d965c2602bfd1be4dd09f1c54c8e7e9db - engine: gotpl - home: https://mongodb.org - keywords: - - mongodb - - database - - nosql - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: mongodb - sources: - - https://github.com/bitnami/bitnami-docker-mongodb - urls: - - https://kubernetes-charts.storage.googleapis.com/mongodb-0.4.0.tgz - version: 0.4.0 - mysql: - - created: 2017-03-09T19:33:31.145985966Z - description: Fast, reliable, scalable, and easy to use open-source relational - database system. - digest: 66b9a6787a36c72095c24499a45f2d3bfc700e31420a8926d09c029604ac4c98 - engine: gotpl - home: https://www.mysql.com/ - icon: https://www.mysql.com/common/logos/logo-mysql-170x115.png - keywords: - - mysql - - database - - sql - maintainers: - - email: viglesias@google.com - name: Vic Iglesias - name: mysql - sources: - - https://github.com/kubernetes/charts - - https://github.com/docker-library/mysql - urls: - - https://kubernetes-charts.storage.googleapis.com/mysql-0.2.5.tgz - version: 0.2.5 - - created: 2017-02-13T04:18:31.541320579Z - description: Chart for MySQL - digest: 3653a2d111ca60287ffbf10cbbb3c268dcb8666422bf5518d37adb9b2f131f7c - engine: gotpl - home: https://www.mysql.com/ - keywords: - - mysql - - database - - sql - maintainers: - - email: viglesias@google.com - name: Vic Iglesias - name: mysql - sources: - - https://github.com/kubernetes/charts - - https://github.com/docker-library/mysql - urls: - - https://kubernetes-charts.storage.googleapis.com/mysql-0.2.4.tgz - version: 0.2.4 - - created: 2017-01-27T22:33:30.41494884Z - description: Chart for MySQL - digest: 1244814f3490d23172a923e52339ad8b126f3037483db462591405863884e7ce - engine: gotpl - home: https://www.mysql.com/ - keywords: - - mysql - - database - - sql - maintainers: - - email: viglesias@google.com - name: Vic Iglesias - name: mysql - sources: - - https://github.com/kubernetes/charts - - https://github.com/docker-library/mysql - urls: - - https://kubernetes-charts.storage.googleapis.com/mysql-0.2.3.tgz - version: 0.2.3 - - created: 2016-12-21T19:33:19.335178436Z - description: Chart for MySQL - digest: 5dfdd6301aa5c7424c5ecc649ac3038ea72afd0e25d4c350c79e8ba84fe15faf - engine: gotpl - home: https://www.mysql.com/ - keywords: - - mysql - - database - - sql - maintainers: - - email: viglesias@google.com - name: Vic Iglesias - name: mysql - sources: - - https://github.com/kubernetes/charts - - https://github.com/docker-library/mysql - urls: - - https://kubernetes-charts.storage.googleapis.com/mysql-0.2.2.tgz - version: 0.2.2 - - created: 2016-12-09T18:48:20.187750412Z - description: Chart for MySQL - digest: 3dd20c2ed2faf64b9f940e813b18d7fa1c18c1b86101de453c7c836940e05680 - engine: gotpl - home: https://www.mysql.com/ - keywords: - - mysql - - database - - sql - maintainers: - - email: viglesias@google.com - name: Vic Iglesias - name: mysql - sources: - - https://github.com/kubernetes/charts - - https://github.com/docker-library/mysql - urls: - - https://kubernetes-charts.storage.googleapis.com/mysql-0.2.1.tgz - version: 0.2.1 - - created: 2016-11-04T14:18:20.013918541Z - description: Chart for MySQL - digest: 9723417e4d71713ed87b701eff52a1a74abea64c3cf852833b1e9bb96ff6fd55 - engine: gotpl - home: https://www.mysql.com/ - keywords: - - mysql - - database - - sql - maintainers: - - email: viglesias@google.com - name: Vic Iglesias - name: mysql - sources: - - https://github.com/kubernetes/charts - - https://github.com/docker-library/mysql - urls: - - https://kubernetes-charts.storage.googleapis.com/mysql-0.2.0.tgz - version: 0.2.0 - - created: 2016-11-03T03:18:19.715713217Z - description: Chart for MySQL - digest: fef93423760265f8bb3aedf9a922ed0169e018071ea467f22c17527006ae6a60 - engine: gotpl - home: https://www.mysql.com/ - keywords: - - mysql - - database - - sql - maintainers: - - email: viglesias@google.com - name: Vic Iglesias - name: mysql - sources: - - https://github.com/kubernetes/charts - - https://github.com/docker-library/mysql - urls: - - https://kubernetes-charts.storage.googleapis.com/mysql-0.1.2.tgz - version: 0.1.2 - - created: 2016-10-19T18:33:14.866729383Z - description: Chart for MySQL - digest: 3cb4495336e12d4fea28a1f7e3f02bbb18249582227866088cf6ac89587a2527 - engine: gotpl - home: https://www.mysql.com/ - keywords: - - mysql - - database - - sql - maintainers: - - email: viglesias@google.com - name: Vic Iglesias - name: mysql - sources: - - https://github.com/kubernetes/charts - - https://github.com/docker-library/mysql - urls: - - https://kubernetes-charts.storage.googleapis.com/mysql-0.1.1.tgz - version: 0.1.1 - - created: 2016-10-19T00:03:14.031801762Z - description: Chart for MySQL - digest: cba3eff1710520dbfbbeca2b0f9a754e0ddc172eb83ce51211606387955a6572 - engine: gotpl - home: https://www.mysql.com/ - keywords: - - mysql - - database - - sql - maintainers: - - email: viglesias@google.com - name: Vic Iglesias - name: mysql - sources: - - https://github.com/kubernetes/charts - - https://github.com/docker-library/mysql - urls: - - https://kubernetes-charts.storage.googleapis.com/mysql-0.1.0.tgz - version: 0.1.0 - nginx-ingress: - - created: 2017-03-09T19:33:31.146512877Z - description: An nginx Ingress controller that uses ConfigMap to store the nginx - configuration. - digest: 731823c88a849f945f405c192d92daf27afad37af76befb1eb92251240de29d7 - engine: gotpl - icon: https://upload.wikimedia.org/wikipedia/commons/thumb/c/c5/Nginx_logo.svg/500px-Nginx_logo.svg.png - keywords: - - ingress - - nginx - maintainers: - - email: jack.zampolin@gmail.com - name: Jack Zampolin - - email: mgoodness@gmail.com - name: Michael Goodness - name: nginx-ingress - sources: - - https://github.com/kubernetes/contrib/tree/master/ingress/controllers/nginx - urls: - - https://kubernetes-charts.storage.googleapis.com/nginx-ingress-0.3.0.tgz - version: 0.3.0 - nginx-lego: - - created: 2017-03-09T19:33:31.14695344Z - description: Chart for nginx-ingress-controller and kube-lego - digest: da173cc1a9313ea0b11f5fb7aa67a20a2ac797b2f129a079c06284e8a9765f21 - engine: gotpl - keywords: - - kube-lego - - nginx-ingress-controller - - nginx - - letsencrypt - maintainers: - - email: jack.zampolin@gmail.com - name: Jack Zampolin - name: nginx-lego - sources: - - https://github.com/kubernetes/contrib/tree/master/ingress/controllers/nginx - - https://github.com/jetstack/kube-lego/tree/master/examples/nginx - urls: - - https://kubernetes-charts.storage.googleapis.com/nginx-lego-0.2.1.tgz - version: 0.2.1 - - created: 2017-03-02T18:48:30.43738595Z - description: Chart for nginx-ingress-controller and kube-lego - digest: 9a8ea81371900d2c7931b0143f991ef0fde41038d26a968628008aef14ec08ef - engine: gotpl - keywords: - - kube-lego - - nginx-ingress-controller - - nginx - - letsencrypt - maintainers: - - email: jack.zampolin@gmail.com - name: Jack Zampolin - name: nginx-lego - sources: - - https://github.com/kubernetes/contrib/tree/master/ingress/controllers/nginx - - https://github.com/jetstack/kube-lego/tree/master/examples/nginx - urls: - - https://kubernetes-charts.storage.googleapis.com/nginx-lego-0.2.0.tgz - version: 0.2.0 - - created: 2017-01-12T02:52:37.835917781Z - description: Chart for nginx-ingress-controller and kube-lego - digest: 2dee942e546940beb8301a94a1a51e22c7a38b4c5592701528149dfaa83e1bb6 - engine: gotpl - keywords: - - kube-lego - - nginx-ingress-controller - - nginx - - letsencrypt - maintainers: - - email: jack.zampolin@gmail.com - name: Jack Zampolin - name: nginx-lego - sources: - - https://github.com/kubernetes/contrib/tree/master/ingress/controllers/nginx - - https://github.com/jetstack/kube-lego/tree/master/examples/nginx - urls: - - https://kubernetes-charts.storage.googleapis.com/nginx-lego-0.1.0.tgz - version: 0.1.0 - odoo: - - created: 2017-03-09T19:33:31.147618017Z - description: A suite of web based open source business apps. - digest: 1339b6efbc6b4df849c460ddbcade9f81ede3a6a800e9566f54acc1c52dccb4b - engine: gotpl - home: https://www.odoo.com/ - icon: https://bitnami.com/assets/stacks/odoo/img/odoo-stack-110x117.png - keywords: - - odoo - - crm - - www - - http - - web - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: odoo - sources: - - https://github.com/bitnami/bitnami-docker-odoo - urls: - - https://kubernetes-charts.storage.googleapis.com/odoo-0.4.1.tgz - version: 0.4.1 - - created: 2017-03-08T19:03:31.734764598Z - description: A suite of web based open source business apps. - digest: 15b1d5339086427990fb3d0ee8f65e768b398195f2db63b0356e6c79f4d4b981 - engine: gotpl - home: https://www.odoo.com/ - icon: https://bitnami.com/assets/stacks/odoo/img/odoo-stack-110x117.png - keywords: - - odoo - - crm - - www - - http - - web - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: odoo - sources: - - https://github.com/bitnami/bitnami-docker-odoo - urls: - - https://kubernetes-charts.storage.googleapis.com/odoo-0.4.0.tgz - version: 0.4.0 - opencart: - - created: 2017-03-09T19:33:31.149504586Z - description: A free and open source e-commerce platform for online merchants. - It provides a professional and reliable foundation for a successful online store. - digest: 0abb5c30e0eef2a06b36b83b0c11f4bcf3df14ea416c5e49cb821c78e6783bce - engine: gotpl - home: https://opencart.com/ - icon: https://bitnami.com/assets/stacks/opencart/img/opencart-stack-110x117.png - keywords: - - opencart - - e-commerce - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: opencart - sources: - - https://github.com/bitnami/bitnami-docker-opencart - urls: - - https://kubernetes-charts.storage.googleapis.com/opencart-0.4.4.tgz - version: 0.4.4 - - created: 2017-03-02T19:33:28.187180475Z - description: A free and open source e-commerce platform for online merchants. - It provides a professional and reliable foundation for a successful online store. - digest: 1a80dfcec98c190b8710d7db47c22c3882a05a046b3d767c84094cef983a1556 - engine: gotpl - home: https://opencart.com/ - icon: https://bitnami.com/assets/stacks/opencart/img/opencart-stack-110x117.png - keywords: - - opencart - - e-commerce - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: opencart - sources: - - https://github.com/bitnami/bitnami-docker-opencart - urls: - - https://kubernetes-charts.storage.googleapis.com/opencart-0.4.3.tgz - version: 0.4.3 - - created: 2017-02-23T02:33:30.963491381Z - description: A free and open source e-commerce platform for online merchants. - It provides a professional and reliable foundation for a successful online store. - digest: d3092c4ed82db569937e435d3dc6bcddce420540bf340dd54a554a57b62c6aaa - engine: gotpl - home: https://opencart.com/ - icon: https://bitnami.com/assets/stacks/opencart/img/opencart-stack-110x117.png - keywords: - - opencart - - e-commerce - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: opencart - sources: - - https://github.com/bitnami/bitnami-docker-opencart - urls: - - https://kubernetes-charts.storage.googleapis.com/opencart-0.4.2.tgz - version: 0.4.2 - - created: 2017-01-21T00:18:31.354317974Z - description: A free and open source e-commerce platform for online merchants. - It provides a professional and reliable foundation for a successful online store. - digest: afbaa2517e811990bc4b31495a4634b6399615493cf344215a5658de2f33575b - engine: gotpl - home: https://opencart.com/ - icon: https://bitnami.com/assets/stacks/opencart/img/opencart-stack-110x117.png - keywords: - - opencart - - e-commerce - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: opencart - sources: - - https://github.com/bitnami/bitnami-docker-opencart - urls: - - https://kubernetes-charts.storage.googleapis.com/opencart-0.4.1.tgz - version: 0.4.1 - - created: 2017-01-04T00:48:19.745672724Z - description: A free and open source e-commerce platform for online merchants. - It provides a professional and reliable foundation for a successful online store. - digest: f0e46cf67f8594c6d92f02fad4a23fdf7aa94bdb145bfde39436e17f0a8930f5 - engine: gotpl - home: https://opencart.com/ - icon: https://bitnami.com/assets/stacks/opencart/img/opencart-stack-110x117.png - keywords: - - opencart - - e-commerce - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: opencart - sources: - - https://github.com/bitnami/bitnami-docker-opencart - urls: - - https://kubernetes-charts.storage.googleapis.com/opencart-0.4.0.tgz - version: 0.4.0 - openvpn: - - apiVersion: v1 - created: 2017-03-09T19:33:31.149998199Z - description: A Helm chart to install an openvpn server inside a kubernetes cluster. Certificate - generation is also part of the deployment, and this chart will generate client - keys as needed. - digest: 6f71c3ff593313044c0e6c2dba4ab7d44c8003db82684aeec84cd963d4a6c295 - home: https://openvpn.net/index.php/open-source.html - icon: https://forums.openvpn.net/styles/openvpn/theme/images/ovpnlogo.png - keywords: - - openvpn - - vpn - - tunnel - - network - - service - - connectivity - - encryption - maintainers: - - email: john.felten@gmail.com - name: John Felten - name: openvpn - urls: - - https://kubernetes-charts.storage.googleapis.com/openvpn-1.0.1.tgz - version: 1.0.1 - - apiVersion: v1 - created: 2017-01-27T21:48:32.078827588Z - description: A Helm chart to install an openvpn server inside a kubernetes cluster. Certificate - generation is also part of the deployment, and this chart will generate client - keys as needed. - digest: a12cfddce900c8a4ef6cea0cef5426d5fb23c657cdab433f9307f6d048273f6b - home: https://openvpn.net/index.php/open-source.html - icon: https://forums.openvpn.net/styles/openvpn/theme/images/ovpnlogo.png - keywords: - - openvpn - - vpn - - tunnel - - network - - service - - connectivity - - encryption - maintainers: - - email: john.felten@gmail.com - name: John Felten - name: openvpn - urls: - - https://kubernetes-charts.storage.googleapis.com/openvpn-1.0.0.tgz - version: 1.0.0 - orangehrm: - - created: 2017-03-09T19:33:31.151008901Z - description: OrangeHRM is a free HR management system that offers a wealth of - modules to suit the needs of your business. - digest: 87483fe0c39f63c61549a85103b9423b30ac4bfe2b19a7af083eaf7dd3491ce2 - engine: gotpl - home: https://www.orangehrm.com - icon: https://bitnami.com/assets/stacks/orangehrm/img/orangehrm-stack-110x117.png - keywords: - - orangehrm - - http - - https - - web - - application - - php - - human resources - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: orangehrm - sources: - - https://github.com/bitnami/bitnami-docker-orangehrm - urls: - - https://kubernetes-charts.storage.googleapis.com/orangehrm-0.4.3.tgz - version: 0.4.3 - - created: 2017-03-02T19:33:28.188778055Z - description: OrangeHRM is a free HR management system that offers a wealth of - modules to suit the needs of your business. - digest: d03e9f261dd50212f6c2c0ecc3a84cbabda89493d8bfc28ad95c6c9a6a195af9 - engine: gotpl - home: https://www.orangehrm.com - icon: https://bitnami.com/assets/stacks/orangehrm/img/orangehrm-stack-110x117.png - keywords: - - orangehrm - - http - - https - - web - - application - - php - - human resources - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: orangehrm - sources: - - https://github.com/bitnami/bitnami-docker-orangehrm - urls: - - https://kubernetes-charts.storage.googleapis.com/orangehrm-0.4.2.tgz - version: 0.4.2 - - created: 2017-02-23T02:33:30.964778113Z - description: OrangeHRM is a free HR management system that offers a wealth of - modules to suit the needs of your business. - digest: b5e5ed301b5321a99a7147173ec6fa7cb471879a585b9af0e8ac2741f0409e48 - engine: gotpl - home: https://www.orangehrm.com - icon: https://bitnami.com/assets/stacks/orangehrm/img/orangehrm-stack-110x117.png - keywords: - - orangehrm - - http - - https - - web - - application - - php - - human resources - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: orangehrm - sources: - - https://github.com/bitnami/bitnami-docker-orangehrm - urls: - - https://kubernetes-charts.storage.googleapis.com/orangehrm-0.4.1.tgz - version: 0.4.1 - - created: 2017-02-01T00:48:29.581953712Z - description: OrangeHRM is a free HR management system that offers a wealth of - modules to suit the needs of your business. - digest: 4ca6ccafc5bc408cb9e61139b8914468e0d8eeed7bffb62eea51c6e40697e8dd - engine: gotpl - home: https://www.orangehrm.com - icon: https://bitnami.com/assets/stacks/orangehrm/img/orangehrm-stack-110x117.png - keywords: - - orangehrm - - http - - https - - web - - application - - php - - human resources - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: orangehrm - sources: - - https://github.com/bitnami/bitnami-docker-orangehrm - urls: - - https://kubernetes-charts.storage.googleapis.com/orangehrm-0.4.0.tgz - version: 0.4.0 - osclass: - - created: 2017-03-09T19:33:31.15182867Z - description: Osclass is a php script that allows you to quickly create and manage - your own free classifieds site. - digest: 23472bb37c094dad3122a96f6fd6a3967f1d41547121ecf2622b557f2fc5da8b - engine: gotpl - home: https://osclass.org/ - icon: https://bitnami.com/assets/stacks/osclass/img/osclass-stack-110x117.png - keywords: - - osclass - - classifieds - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: osclass - sources: - - https://github.com/bitnami/bitnami-docker-osclass - urls: - - https://kubernetes-charts.storage.googleapis.com/osclass-0.4.1.tgz - version: 0.4.1 - - created: 2017-02-23T02:33:30.965596248Z - description: Osclass is a php script that allows you to quickly create and manage - your own free classifieds site. - digest: 7c21cef0b281e3da5b3c9b60940c1b010c34fe866c95615b7d0afd10c480178c - engine: gotpl - home: https://osclass.org/ - icon: https://bitnami.com/assets/stacks/osclass/img/osclass-stack-110x117.png - keywords: - - osclass - - classifieds - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: osclass - sources: - - https://github.com/bitnami/bitnami-docker-osclass - urls: - - https://kubernetes-charts.storage.googleapis.com/osclass-0.4.0.tgz - version: 0.4.0 - owncloud: - - created: 2017-03-09T19:33:31.152647262Z - description: A file sharing server that puts the control and security of your - own data back into your hands. - digest: fb78c2ea47996c6781ddfe2dca6aea87cbb8b895e1fc5fea404aa28735d4a2ec - engine: gotpl - home: https://owncloud.org/ - icon: https://bitnami.com/assets/stacks/owncloud/img/owncloud-stack-220x234.png - keywords: - - owncloud - - storage - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: owncloud - sources: - - https://github.com/bitnami/bitnami-docker-owncloud - urls: - - https://kubernetes-charts.storage.googleapis.com/owncloud-0.4.5.tgz - version: 0.4.5 - - created: 2017-03-08T19:03:31.738784117Z - description: A file sharing server that puts the control and security of your - own data back into your hands. - digest: 07e18bccf9dc0a8fcff42e97c422520530c2c5057c2a9c14767842609bcaa7ac - engine: gotpl - home: https://owncloud.org/ - icon: https://bitnami.com/assets/stacks/owncloud/img/owncloud-stack-220x234.png - keywords: - - owncloud - - storage - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: owncloud - sources: - - https://github.com/bitnami/bitnami-docker-owncloud - urls: - - https://kubernetes-charts.storage.googleapis.com/owncloud-0.4.4.tgz - version: 0.4.4 - - created: 2017-02-11T03:18:26.536480213Z - description: A file sharing server that puts the control and security of your - own data back into your hands. - digest: 4e534bdc4be184c59fbcbcff4641f2bfa341cd7f4ed3668912cd47c1336f5dea - engine: gotpl - home: https://owncloud.org/ - keywords: - - owncloud - - storage - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: owncloud - sources: - - https://github.com/bitnami/bitnami-docker-owncloud - urls: - - https://kubernetes-charts.storage.googleapis.com/owncloud-0.4.3.tgz - version: 0.4.3 - - created: 2017-01-30T23:48:29.172608299Z - description: A file sharing server that puts the control and security of your - own data back into your hands. - digest: b41eb1fc1eea6311f3ad15b459f99b77e96b944b81ea50ebccc941191d496141 - engine: gotpl - home: https://owncloud.org/ - keywords: - - owncloud - - storage - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: owncloud - sources: - - https://github.com/bitnami/bitnami-docker-owncloud - urls: - - https://kubernetes-charts.storage.googleapis.com/owncloud-0.4.2.tgz - version: 0.4.2 - - created: 2017-01-21T00:18:31.35624854Z - description: A file sharing server that puts the control and security of your - own data back into your hands. - digest: 89901fc256d6a4f878d77b51bf23eb77358dedb040052b34a09cbe9ca607487f - engine: gotpl - home: https://owncloud.org/ - keywords: - - owncloud - - storage - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: owncloud - sources: - - https://github.com/bitnami/bitnami-docker-owncloud - urls: - - https://kubernetes-charts.storage.googleapis.com/owncloud-0.4.1.tgz - version: 0.4.1 - - created: 2016-12-21T18:33:20.278724682Z - description: A file sharing server that puts the control and security of your - own data back into your hands. - digest: 7ec2dfe27bf42e8ee2e0672964decc2fbec94ec4fb60af2f3e9e91e13fdae08a - engine: gotpl - home: https://owncloud.org/ - keywords: - - owncloud - - storage - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: owncloud - sources: - - https://github.com/bitnami/bitnami-docker-owncloud - urls: - - https://kubernetes-charts.storage.googleapis.com/owncloud-0.4.0.tgz - version: 0.4.0 - phabricator: - - created: 2017-03-09T19:33:31.153509669Z - description: Collection of open source web applications that help software companies - build better software. - digest: ef626563185a4b41ff7da03a9bd5548903061c6140d2d65300e4b1c1d39a2f28 - engine: gotpl - home: https://www.phacility.com/phabricator/ - icon: https://bitnami.com/assets/stacks/phabricator/img/phabricator-stack-110x117.png - keywords: - - phabricator - - http - - https - - web - - application - - collaboration - - project management - - bug tracking - - code review - - wiki - - git - - mercurial - - subversion - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: phabricator - sources: - - https://github.com/bitnami/bitnami-docker-phabricator - urls: - - https://kubernetes-charts.storage.googleapis.com/phabricator-0.4.4.tgz - version: 0.4.4 - - created: 2017-03-02T19:33:28.191377992Z - description: Collection of open source web applications that help software companies - build better software. - digest: 544373e984918da349351f05fdb7a8cf0c695726890bcd4cc348e786e1c55d57 - engine: gotpl - home: https://www.phacility.com/phabricator/ - icon: https://bitnami.com/assets/stacks/phabricator/img/phabricator-stack-110x117.png - keywords: - - phabricator - - http - - https - - web - - application - - collaboration - - project management - - bug tracking - - code review - - wiki - - git - - mercurial - - subversion - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: phabricator - sources: - - https://github.com/bitnami/bitnami-docker-phabricator - urls: - - https://kubernetes-charts.storage.googleapis.com/phabricator-0.4.3.tgz - version: 0.4.3 - - created: 2017-02-23T02:33:30.967143259Z - description: Collection of open source web applications that help software companies - build better software. - digest: 657b118031c1513b95268915ef4f68f5453f2b21ca5a919e9a370facb439dfe5 - engine: gotpl - home: https://www.phacility.com/phabricator/ - icon: https://bitnami.com/assets/stacks/phabricator/img/phabricator-stack-110x117.png - keywords: - - phabricator - - http - - https - - web - - application - - collaboration - - project management - - bug tracking - - code review - - wiki - - git - - mercurial - - subversion - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: phabricator - sources: - - https://github.com/bitnami/bitnami-docker-phabricator - urls: - - https://kubernetes-charts.storage.googleapis.com/phabricator-0.4.2.tgz - version: 0.4.2 - - created: 2017-01-21T00:18:31.358403062Z - description: Collection of open source web applications that help software companies - build better software. - digest: 77603dd383c0674e829fa4aa2ca0d33ce61884df6a3ce68f9e165e7802e7eacc - engine: gotpl - home: https://www.phacility.com/phabricator/ - icon: https://bitnami.com/assets/stacks/phabricator/img/phabricator-stack-110x117.png - keywords: - - phabricator - - http - - https - - web - - application - - collaboration - - project management - - bug tracking - - code review - - wiki - - git - - mercurial - - subversion - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: phabricator - sources: - - https://github.com/bitnami/bitnami-docker-phabricator - urls: - - https://kubernetes-charts.storage.googleapis.com/phabricator-0.4.1.tgz - version: 0.4.1 - - created: 2017-01-04T00:48:19.747640048Z - description: Collection of open source web applications that help software companies - build better software. - digest: e4f0f5322bac2a2bed822eb8065eec6e29716310af1623975f1ad0ef2b448c66 - engine: gotpl - home: https://www.phacility.com/phabricator/ - icon: https://bitnami.com/assets/stacks/phabricator/img/phabricator-stack-110x117.png - keywords: - - phabricator - - http - - https - - web - - application - - collaboration - - project management - - bug tracking - - code review - - wiki - - git - - mercurial - - subversion - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: phabricator - sources: - - https://github.com/bitnami/bitnami-docker-phabricator - urls: - - https://kubernetes-charts.storage.googleapis.com/phabricator-0.4.0.tgz - version: 0.4.0 - phpbb: - - created: 2017-03-09T19:33:31.154334362Z - description: Community forum that supports the notion of users and groups, file - attachments, full-text search, notifications and more. - digest: 30732d5c200ef312a50f5a89a222a959c99b0a08af87f0c312c3699bb2c56082 - engine: gotpl - home: https://www.phpbb.com/ - icon: https://bitnami.com/assets/stacks/phpbb/img/phpbb-stack-220x234.png - keywords: - - phpbb - - forum - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: phpbb - sources: - - https://github.com/bitnami/bitnami-docker-phpbb - urls: - - https://kubernetes-charts.storage.googleapis.com/phpbb-0.4.6.tgz - version: 0.4.6 - - created: 2017-03-02T19:33:28.19218227Z - description: Community forum that supports the notion of users and groups, file - attachments, full-text search, notifications and more. - digest: ed994a70f454f325cf677bdcc0a09aa66b01c7343a624a3304b88148eafa0dd4 - engine: gotpl - home: https://www.phpbb.com/ - icon: https://bitnami.com/assets/stacks/phpbb/img/phpbb-stack-220x234.png - keywords: - - phpbb - - forum - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: phpbb - sources: - - https://github.com/bitnami/bitnami-docker-phpbb - urls: - - https://kubernetes-charts.storage.googleapis.com/phpbb-0.4.5.tgz - version: 0.4.5 - - created: 2017-02-23T02:33:30.967854461Z - description: Community forum that supports the notion of users and groups, file - attachments, full-text search, notifications and more. - digest: f50e4b1eb4bf8b2e6815b664e3cfff4bfd7979b650bf1efa709b79c92a8e5dd0 - engine: gotpl - home: https://www.phpbb.com/ - icon: https://bitnami.com/assets/stacks/phpbb/img/phpbb-stack-220x234.png - keywords: - - phpbb - - forum - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: phpbb - sources: - - https://github.com/bitnami/bitnami-docker-phpbb - urls: - - https://kubernetes-charts.storage.googleapis.com/phpbb-0.4.4.tgz - version: 0.4.4 - - created: 2017-02-13T17:03:30.134235119Z - description: Community forum that supports the notion of users and groups, file - attachments, full-text search, notifications and more. - digest: c41705e34490d1941adda128b166ef1a327cceb7a447113d2633652f3c85363a - engine: gotpl - home: https://www.phpbb.com/ - icon: https://bitnami.com/assets/stacks/phpbb/img/phpbb-stack-220x234.png - keywords: - - phpbb - - forum - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: phpbb - sources: - - https://github.com/bitnami/bitnami-docker-phpbb - urls: - - https://kubernetes-charts.storage.googleapis.com/phpbb-0.4.3.tgz - version: 0.4.3 - - created: 2017-02-13T04:18:31.547850917Z - description: Community forum that supports the notion of users and groups, file - attachments, full-text search, notifications and more. - digest: 77f6dfa8f277b003ba0b8e2ca6d046f6b6526ee7db05e304cbb9924c9fd7d194 - engine: gotpl - home: https://www.phpbb.com/ - keywords: - - phpbb - - forum - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: phpbb - sources: - - https://github.com/bitnami/bitnami-docker-phpbb - urls: - - https://kubernetes-charts.storage.googleapis.com/phpbb-0.4.2.tgz - version: 0.4.2 - - created: 2017-01-31T00:03:26.18262303Z - description: Community forum that supports the notion of users and groups, file - attachments, full-text search, notifications and more. - digest: cd6dde525898d91f5f39541ee205e79ba5b8eb7a5b99585141cc88c3a63f5aed - engine: gotpl - home: https://www.phpbb.com/ - keywords: - - phpbb - - forum - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: phpbb - sources: - - https://github.com/bitnami/bitnami-docker-phpbb - urls: - - https://kubernetes-charts.storage.googleapis.com/phpbb-0.4.1.tgz - version: 0.4.1 - - created: 2016-12-09T18:48:20.188802837Z - description: Community forum that supports the notion of users and groups, file - attachments, full-text search, notifications and more. - digest: 7e5e8828fdbba9ebc83c95baac4937e569e881d8b68bc79974a0f5d8a2883e13 - engine: gotpl - home: https://www.phpbb.com/ - keywords: - - phpbb - - forum - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: phpbb - sources: - - https://github.com/bitnami/bitnami-docker-phpbb - urls: - - https://kubernetes-charts.storage.googleapis.com/phpbb-0.4.0.tgz - version: 0.4.0 - postgresql: - - created: 2017-03-09T19:33:31.154763685Z - description: Object-relational database management system (ORDBMS) with an emphasis - on extensibility and on standards-compliance. - digest: 0ca09fbfd539d5258026fcaf7b640f88295271f88773acfa540dcd55cfaf6036 - engine: gotpl - home: https://www.postgresql.org/ - icon: https://www.postgresql.org/media/img/about/press/elephant.png - keywords: - - postgresql - - postgres - - database - - sql - maintainers: - - name: swordbeta - - name: databus23 - name: postgresql - sources: - - https://github.com/kubernetes/charts - - https://github.com/docker-library/postgres - urls: - - https://kubernetes-charts.storage.googleapis.com/postgresql-0.4.0.tgz - version: 0.4.0 - - created: 2017-02-13T21:33:27.762374795Z - description: Object-relational database management system (ORDBMS) with an emphasis - on extensibility and on standards-compliance. - digest: b07b7c12f13731ebc3019c11601351863030ad3933f72fb7925f3c0de39e23f4 - engine: gotpl - home: https://www.postgresql.org/ - icon: https://www.postgresql.org/media/img/about/press/elephant.png - keywords: - - postgresql - - postgres - - database - - sql - maintainers: - - name: swordbeta - - name: databus23 - name: postgresql - sources: - - https://github.com/kubernetes/charts - - https://github.com/docker-library/postgres - urls: - - https://kubernetes-charts.storage.googleapis.com/postgresql-0.3.4.tgz - version: 0.3.4 - - created: 2017-02-13T04:18:31.548242286Z - description: Chart for PostgreSQL - digest: 80685774a539b9efa27ea82337e9dd9fccd436688a84e2609d59a68a336d8f18 - engine: gotpl - home: https://www.postgresql.org/ - keywords: - - postgresql - - postgres - - database - - sql - maintainers: - - name: swordbeta - - name: databus23 - name: postgresql - sources: - - https://github.com/kubernetes/charts - - https://github.com/docker-library/postgres - urls: - - https://kubernetes-charts.storage.googleapis.com/postgresql-0.3.3.tgz - version: 0.3.3 - - created: 2017-02-06T17:48:28.059659169Z - description: Chart for PostgreSQL - digest: d8306a710181a440672795d0b5850e6851ae28b3ecb4cf5f92126c9f533700d5 - engine: gotpl - home: https://www.postgresql.org/ - keywords: - - postgresql - - postgres - - database - - sql - maintainers: - - name: swordbeta - - name: databus23 - name: postgresql - sources: - - https://github.com/kubernetes/charts - - https://github.com/docker-library/postgres - urls: - - https://kubernetes-charts.storage.googleapis.com/postgresql-0.3.2.tgz - version: 0.3.2 - - created: 2017-01-28T00:18:32.756495622Z - description: Chart for PostgreSQL - digest: 7b4e2b838ccb2e96c26f0b18d75b2cba224a634925abacaeee1b053a3db40f72 - engine: gotpl - home: https://www.postgresql.org/ - keywords: - - postgresql - - postgres - - database - - sql - maintainers: - - name: swordbeta - - name: databus23 - name: postgresql - sources: - - https://github.com/kubernetes/charts - - https://github.com/docker-library/postgres - urls: - - https://kubernetes-charts.storage.googleapis.com/postgresql-0.3.1.tgz - version: 0.3.1 - - created: 2017-01-26T17:18:33.808053693Z - description: Chart for PostgreSQL - digest: b8e412ddd2f2648efbaa84f85c924e5b94cba0393fb93ea607fdcab3132b7d2e - engine: gotpl - home: https://www.postgresql.org/ - keywords: - - postgresql - - postgres - - database - - sql - maintainers: - - name: swordbeta - - name: databus23 - name: postgresql - sources: - - https://github.com/kubernetes/charts - - https://github.com/docker-library/postgres - urls: - - https://kubernetes-charts.storage.googleapis.com/postgresql-0.3.0.tgz - version: 0.3.0 - - created: 2016-12-21T18:33:20.280731983Z - description: Chart for PostgreSQL - digest: a0516b4e5b83d9dd4af936859582878683183c6f72e9dddb73c9ff0fd280b972 - engine: gotpl - home: https://www.postgresql.org/ - keywords: - - postgresql - - postgres - - database - - sql - maintainers: - - name: swordbeta - name: postgresql - sources: - - https://github.com/kubernetes/charts - - https://github.com/docker-library/postgres - urls: - - https://kubernetes-charts.storage.googleapis.com/postgresql-0.2.2.tgz - version: 0.2.2 - - created: 2016-12-19T22:48:20.03810957Z - description: Chart for PostgreSQL - digest: 8d79ed44bb8477cdbbf8a3eb5a08eef787a147334b30d35a81f8ee43d07eb9ee - engine: gotpl - home: https://www.postgresql.org/ - keywords: - - postgresql - - postgres - - database - - sql - maintainers: - - name: swordbeta - name: postgresql - sources: - - https://github.com/kubernetes/charts - - https://github.com/docker-library/postgres - urls: - - https://kubernetes-charts.storage.googleapis.com/postgresql-0.2.1.tgz - version: 0.2.1 - - created: 2016-12-05T20:48:21.242600076Z - description: Chart for PostgreSQL - digest: 713d7ee250af7f914188d889ba3cb3065b4c36565b6f68ca8f55cd5340bda213 - engine: gotpl - home: https://www.postgresql.org/ - keywords: - - postgresql - - postgres - - database - - sql - maintainers: - - name: swordbeta - name: postgresql - sources: - - https://github.com/kubernetes/charts - - https://github.com/docker-library/postgres - urls: - - https://kubernetes-charts.storage.googleapis.com/postgresql-0.2.0.tgz - version: 0.2.0 - - created: 2016-11-08T15:03:20.745475633Z - description: Chart for PostgreSQL - digest: c79411d63ad872d0f6d034de9818cef565dbde3ac5f018ee8349305f286031a8 - engine: gotpl - home: https://www.postgresql.org/ - keywords: - - postgresql - - postgres - - database - - sql - maintainers: - - name: swordbeta - name: postgresql - sources: - - https://github.com/kubernetes/charts - - https://github.com/docker-library/postgres - urls: - - https://kubernetes-charts.storage.googleapis.com/postgresql-0.1.1.tgz - version: 0.1.1 - - created: 2016-11-04T14:18:20.014925806Z - description: Chart for PostgreSQL - digest: c984e3efb97da1b841c6a07b1e8fd32638b59de42e5b062690b8c9956be58959 - engine: gotpl - home: https://www.postgresql.org/ - keywords: - - postgresql - - postgres - - database - - sql - maintainers: - - name: swordbeta - name: postgresql - sources: - - https://github.com/kubernetes/charts - - https://github.com/docker-library/postgres - urls: - - https://kubernetes-charts.storage.googleapis.com/postgresql-0.1.0.tgz - version: 0.1.0 - prestashop: - - created: 2017-03-09T19:33:31.155594164Z - description: A popular open source ecommerce solution. Professional tools are - easily accessible to increase online sales including instant guest checkout, - abandoned cart reminders and automated Email marketing. - digest: ff84426385c8abb40d0f4f7e2cfc7fec70b0ae38ca32de832ccbb2b26f74787b - engine: gotpl - home: https://prestashop.com/ - icon: https://bitnami.com/assets/stacks/prestashop/img/prestashop-stack-110x117.png - keywords: - - prestashop - - e-commerce - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: prestashop - sources: - - https://github.com/bitnami/bitnami-docker-prestashop - urls: - - https://kubernetes-charts.storage.googleapis.com/prestashop-0.4.4.tgz - version: 0.4.4 - - created: 2017-03-08T19:03:31.741573757Z - description: A popular open source ecommerce solution. Professional tools are - easily accessible to increase online sales including instant guest checkout, - abandoned cart reminders and automated Email marketing. - digest: 4beeb9d17c713b8065f9167d11672862fe2d1eeb5fded4d4ecd395a379825bbc - engine: gotpl - home: https://prestashop.com/ - icon: https://bitnami.com/assets/stacks/prestashop/img/prestashop-stack-110x117.png - keywords: - - prestashop - - e-commerce - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: prestashop - sources: - - https://github.com/bitnami/bitnami-docker-prestashop - urls: - - https://kubernetes-charts.storage.googleapis.com/prestashop-0.4.3.tgz - version: 0.4.3 - - created: 2017-02-13T17:03:30.136404798Z - description: A popular open source ecommerce solution. Professional tools are - easily accessible to increase online sales including instant guest checkout, - abandoned cart reminders and automated Email marketing. - digest: fd8c2be6fd9348d2c5bda428ac61f0745974ebd7a4b58ad5d975d8d21888f1c4 - engine: gotpl - home: https://prestashop.com/ - icon: https://bitnami.com/assets/stacks/prestashop/img/prestashop-stack-110x117.png - keywords: - - prestashop - - e-commerce - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: prestashop - sources: - - https://github.com/bitnami/bitnami-docker-prestashop - urls: - - https://kubernetes-charts.storage.googleapis.com/prestashop-0.4.2.tgz - version: 0.4.2 - - created: 2017-01-21T00:18:31.360326923Z - description: A popular open source ecommerce solution. Professional tools are - easily accessible to increase online sales including instant guest checkout, - abandoned cart reminders and automated Email marketing. - digest: eba227b32cb9f503c4fd41609d705019372f7936c69febaf2c4200735910e333 - engine: gotpl - home: https://prestashop.com/ - icon: https://bitnami.com/assets/stacks/prestashop/img/prestashop-stack-110x117.png - keywords: - - prestashop - - e-commerce - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: prestashop - sources: - - https://github.com/bitnami/bitnami-docker-prestashop - urls: - - https://kubernetes-charts.storage.googleapis.com/prestashop-0.4.1.tgz - version: 0.4.1 - - created: 2017-01-04T00:48:19.749415831Z - description: A popular open source ecommerce solution. Professional tools are - easily accessible to increase online sales including instant guest checkout, - abandoned cart reminders and automated Email marketing. - digest: dd80da4612c962f5d02e2f52f7e0facf42a661d6d6f5eec36d7a3980e2a685d3 - engine: gotpl - home: https://prestashop.com/ - icon: https://bitnami.com/assets/stacks/prestashop/img/prestashop-stack-110x117.png - keywords: - - prestashop - - e-commerce - - http - - web - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: prestashop - sources: - - https://github.com/bitnami/bitnami-docker-prestashop - urls: - - https://kubernetes-charts.storage.googleapis.com/prestashop-0.4.0.tgz - version: 0.4.0 - prometheus: - - created: 2017-03-09T19:33:31.156293259Z - description: A Prometheus Helm chart for Kubernetes. Prometheus is a monitoring - system and time series database. - digest: 0bbefe8b7732b400320007e4f8898518ffcafd3371114be24ca8ded424fe60b3 - engine: gotpl - home: https://prometheus.io/ - maintainers: - - email: mgoodness@gmail.com - name: Michael Goodness - name: prometheus - sources: - - https://github.com/prometheus/alertmanager - - https://github.com/prometheus/prometheus - urls: - - https://kubernetes-charts.storage.googleapis.com/prometheus-2.0.4.tgz - version: 2.0.4 - - created: 2017-02-13T04:18:31.549501389Z - description: A Prometheus Helm chart for Kubernetes. Prometheus is a monitoring - system and time series database. - digest: 0f54774b8b258a8e126f09a66749b15c0691e0a330b65f397d58418b0fa0210c - engine: gotpl - home: https://prometheus.io/ - maintainers: - - email: mgoodness@gmail.com - name: Michael Goodness - name: prometheus - sources: - - https://github.com/prometheus/alertmanager - - https://github.com/prometheus/prometheus - urls: - - https://kubernetes-charts.storage.googleapis.com/prometheus-2.0.3.tgz - version: 2.0.3 - - created: 2017-02-03T20:18:29.168136057Z - description: A Prometheus Helm chart for Kubernetes. Prometheus is a monitoring - system and time series database. - digest: f1f457be370a944f3c703ceecc35664aa00f7a243730ca9e110bc18f1ed3ab9a - engine: gotpl - home: https://prometheus.io/ - maintainers: - - email: mgoodness@gmail.com - name: Michael Goodness - name: prometheus - sources: - - https://github.com/prometheus/alertmanager - - https://github.com/prometheus/prometheus - urls: - - https://kubernetes-charts.storage.googleapis.com/prometheus-2.0.2.tgz - version: 2.0.2 - - created: 2017-02-01T02:18:29.14318599Z - description: A Prometheus Helm chart for Kubernetes. Prometheus is a monitoring - system and time series database. - digest: eebea40b9e86c6dfb92048b0f63d47b11021ab0df437e2b13bc0fd1fc121e8d6 - engine: gotpl - home: https://prometheus.io/ - maintainers: - - email: mgoodness@gmail.com - name: Michael Goodness - name: prometheus - sources: - - https://github.com/prometheus/alertmanager - - https://github.com/prometheus/prometheus - urls: - - https://kubernetes-charts.storage.googleapis.com/prometheus-2.0.1.tgz - version: 2.0.1 - - created: 2017-01-19T19:18:27.372125459Z - description: A Prometheus Helm chart for Kubernetes. Prometheus is a monitoring - system and time series database. - digest: 0ae9e1c2ec6e3a6e2148f01e174bbbdd02a5797b4136e5de784383bca9bff938 - engine: gotpl - home: https://prometheus.io/ - maintainers: - - email: mgoodness@gmail.com - name: Michael Goodness - name: prometheus - sources: - - https://github.com/prometheus/alertmanager - - https://github.com/prometheus/prometheus - urls: - - https://kubernetes-charts.storage.googleapis.com/prometheus-2.0.0.tgz - version: 2.0.0 - - created: 2017-01-12T02:52:37.843602967Z - description: A Prometheus Helm chart for Kubernetes. Prometheus is a monitoring - system and time series database. - digest: cd8d763bdfe5d7c3c0e9a38f9741a2ef5de1c7c57a0c43a4407e70e2f6232dc9 - engine: gotpl - home: https://prometheus.io/ - maintainers: - - email: mgoodness@gmail.com - name: Michael Goodness - name: prometheus - sources: - - https://github.com/prometheus/alertmanager - - https://github.com/prometheus/prometheus - urls: - - https://kubernetes-charts.storage.googleapis.com/prometheus-1.4.2.tgz - version: 1.4.2 - - created: 2017-01-04T00:48:19.750279814Z - description: A Prometheus Helm chart for Kubernetes. Prometheus is a monitoring - system and time series database. - digest: 7209dafe19488487a8a151129deff24fe174d9734ea2c1629dd52bee183a8ad2 - engine: gotpl - home: https://prometheus.io/ - maintainers: - - email: mgoodness@gmail.com - name: Michael Goodness - name: prometheus - sources: - - https://github.com/prometheus/alertmanager - - https://github.com/prometheus/prometheus - urls: - - https://kubernetes-charts.storage.googleapis.com/prometheus-1.4.1.tgz - version: 1.4.1 - - created: 2016-12-09T18:48:20.189907856Z - description: A Prometheus Helm chart for Kubernetes. Prometheus is a monitoring - system and time series database. - digest: f6b4c948e408471b51ff6361e0d0f5afc801ee8141aae5002111ffbc12c68895 - engine: gotpl - home: https://prometheus.io/ - maintainers: - - email: mgoodness@gmail.com - name: Michael Goodness - name: prometheus - sources: - - https://github.com/prometheus/alertmanager - - https://github.com/prometheus/prometheus - urls: - - https://kubernetes-charts.storage.googleapis.com/prometheus-1.3.1.tgz - version: 1.3.1 - rabbitmq: - - created: 2017-03-09T19:33:31.156719576Z - description: Open source message broker software that implements the Advanced - Message Queuing Protocol (AMQP) - digest: bcfcbfa446f75dc1ca93f9a7d2ccc36731ef41f1dd5615e251344af0d6a1ba83 - engine: gotpl - home: https://www.rabbitmq.com - icon: https://bitnami.com/assets/stacks/rabbitmq/img/rabbitmq-stack-220x234.png - keywords: - - rabbitmq - - message queue - - AMQP - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: rabbitmq - sources: - - https://github.com/bitnami/bitnami-docker-rabbitmq - urls: - - https://kubernetes-charts.storage.googleapis.com/rabbitmq-0.4.3.tgz - version: 0.4.3 - - created: 2017-03-08T19:03:31.743135112Z - description: Open source message broker software that implements the Advanced - Message Queuing Protocol (AMQP) - digest: 7ad8ba0ff9d1b57778ffe60812be9087ad4fac27e8696fad4c9eba9a2529fdba - engine: gotpl - home: https://www.rabbitmq.com - icon: https://bitnami.com/assets/stacks/rabbitmq/img/rabbitmq-stack-220x234.png - keywords: - - rabbitmq - - message queue - - AMQP - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: rabbitmq - sources: - - https://github.com/bitnami/bitnami-docker-rabbitmq - urls: - - https://kubernetes-charts.storage.googleapis.com/rabbitmq-0.4.2.tgz - version: 0.4.2 - - created: 2017-02-13T04:18:31.549853753Z - description: Open source message broker software that implements the Advanced - Message Queuing Protocol (AMQP) - digest: 323ca950152028ecfa421b78ba0b9282265f39b934b07649b239be4d9f2dc10a - engine: gotpl - home: https://www.rabbitmq.com - keywords: - - rabbitmq - - message queue - - AMQP - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: rabbitmq - sources: - - https://github.com/bitnami/bitnami-docker-rabbitmq - urls: - - https://kubernetes-charts.storage.googleapis.com/rabbitmq-0.4.1.tgz - version: 0.4.1 - - created: 2017-01-31T00:03:26.184733426Z - description: Open source message broker software that implements the Advanced - Message Queuing Protocol (AMQP) - digest: 9bd9655f974dc3b2666c141718b65c7786e91c533ffee1784428a6d48cb458ca - engine: gotpl - home: https://www.rabbitmq.com - keywords: - - rabbitmq - - message queue - - AMQP - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: rabbitmq - sources: - - https://github.com/bitnami/bitnami-docker-rabbitmq - urls: - - https://kubernetes-charts.storage.googleapis.com/rabbitmq-0.4.0.tgz - version: 0.4.0 - redis: - - created: 2017-03-09T19:33:31.157679831Z - description: Open source, advanced key-value store. It is often referred to as - a data structure server since keys can contain strings, hashes, lists, sets - and sorted sets. - digest: 83ace7583e93e763b781d74c940d0966d7317d2b1665eaed35be9ca73dcace5e - engine: gotpl - home: http://redis.io/ - icon: https://bitnami.com/assets/stacks/redis/img/redis-stack-220x234.png - keywords: - - redis - - keyvalue - - database - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: redis - sources: - - https://github.com/bitnami/bitnami-docker-redis - urls: - - https://kubernetes-charts.storage.googleapis.com/redis-0.4.6.tgz - version: 0.4.6 - - created: 2017-03-02T19:33:28.196397881Z - description: Open source, advanced key-value store. It is often referred to as - a data structure server since keys can contain strings, hashes, lists, sets - and sorted sets. - digest: 7891aef2647fd00ca93cd6894720a6307d3fdd275f912eb6a05fcbb6b7009c13 - engine: gotpl - home: http://redis.io/ - icon: https://bitnami.com/assets/stacks/redis/img/redis-stack-220x234.png - keywords: - - redis - - keyvalue - - database - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: redis - sources: - - https://github.com/bitnami/bitnami-docker-redis - urls: - - https://kubernetes-charts.storage.googleapis.com/redis-0.4.5.tgz - version: 0.4.5 - - created: 2017-02-13T20:18:28.115940614Z - description: Open source, advanced key-value store. It is often referred to as - a data structure server since keys can contain strings, hashes, lists, sets - and sorted sets. - digest: e8cf2f96a6931397adf372857a6a0da161e7e9eb0cf91f565399d20b26144be1 - engine: gotpl - home: http://redis.io/ - icon: https://bitnami.com/assets/stacks/redis/img/redis-stack-220x234.png - keywords: - - redis - - keyvalue - - database - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: redis - sources: - - https://github.com/bitnami/bitnami-docker-redis - urls: - - https://kubernetes-charts.storage.googleapis.com/redis-0.4.4.tgz - version: 0.4.4 - - created: 2017-02-13T04:18:31.550184203Z - description: Chart for Redis - digest: b4cb9b2e0811a83ce269dc06c25a05fe31deb799018eba418232b2c3f4b18b12 - engine: gotpl - home: http://redis.io/ - keywords: - - redis - - keyvalue - - database - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: redis - sources: - - https://github.com/bitnami/bitnami-docker-redis - urls: - - https://kubernetes-charts.storage.googleapis.com/redis-0.4.3.tgz - version: 0.4.3 - - created: 2017-01-28T02:03:32.495597111Z - description: Chart for Redis - digest: 160dab504021716867790c3b1ea5c6e4afcaf865d9b8569707e123bc4d1536dc - engine: gotpl - home: http://redis.io/ - keywords: - - redis - - keyvalue - - database - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: redis - sources: - - https://github.com/bitnami/bitnami-docker-redis - urls: - - https://kubernetes-charts.storage.googleapis.com/redis-0.4.2.tgz - version: 0.4.2 - - created: 2016-12-09T18:48:20.191261198Z - description: Chart for Redis - digest: 7132d9ddecaf4a890e5177c401228fa031f52e927393063f8d6c5a0881b281a3 - engine: gotpl - home: http://redis.io/ - keywords: - - redis - - keyvalue - - database - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: redis - sources: - - https://github.com/bitnami/bitnami-docker-redis - urls: - - https://kubernetes-charts.storage.googleapis.com/redis-0.4.1.tgz - version: 0.4.1 - - created: 2016-10-31T16:33:19.644247028Z - description: Chart for Redis - digest: cef59b98a3607bf0f40560c724fd36a84e5f29498031a36c0f2f80369c35d9c4 - engine: gotpl - home: http://redis.io/ - keywords: - - redis - - keyvalue - - database - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: redis - sources: - - https://github.com/bitnami/bitnami-docker-redis - urls: - - https://kubernetes-charts.storage.googleapis.com/redis-0.4.0.tgz - version: 0.4.0 - redmine: - - created: 2017-03-09T19:33:31.159281515Z - description: A flexible project management web application. - digest: a21733ee877ad579f8b5be03d5a35008816d64dd56e0ca6482a7c0686fcdfe09 - engine: gotpl - home: http://www.redmine.org/ - icon: https://bitnami.com/assets/stacks/redmine/img/redmine-stack-220x234.png - keywords: - - redmine - - project management - - www - - http - - web - - application - - ruby - - rails - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: redmine - sources: - - https://github.com/bitnami/bitnami-docker-redmine - urls: - - https://kubernetes-charts.storage.googleapis.com/redmine-0.3.11.tgz - version: 0.3.11 - - created: 2017-03-08T19:03:31.745197966Z - description: A flexible project management web application. - digest: 30253b618b47801a076c6cdd8a9ff93e1e4401e0189e88576553802b224e2775 - engine: gotpl - home: http://www.redmine.org/ - icon: https://bitnami.com/assets/stacks/redmine/img/redmine-stack-220x234.png - keywords: - - redmine - - project management - - www - - http - - web - - application - - ruby - - rails - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: redmine - sources: - - https://github.com/bitnami/bitnami-docker-redmine - urls: - - https://kubernetes-charts.storage.googleapis.com/redmine-0.3.10.tgz - version: 0.3.10 - - created: 2017-02-13T21:33:27.767502945Z - description: A flexible project management web application. - digest: aa8a3b1be968e99c7a61ad0b7c1d13934562b9c30eeec0b3a3683063b9d38c7b - engine: gotpl - home: http://www.redmine.org/ - icon: https://bitnami.com/assets/stacks/redmine/img/redmine-stack-220x234.png - keywords: - - redmine - - project management - - www - - http - - web - - application - - ruby - - rails - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: redmine - sources: - - https://github.com/bitnami/bitnami-docker-redmine - urls: - - https://kubernetes-charts.storage.googleapis.com/redmine-0.3.9.tgz - version: 0.3.9 - - created: 2017-02-10T23:18:26.028438027Z - description: A flexible project management web application. - digest: 51f4e834b5d2eb4ab66468e6996419bb20aa4d96ebe35a3663bc8b2c494694e6 - engine: gotpl - home: http://www.redmine.org/ - keywords: - - redmine - - project management - - www - - http - - web - - application - - ruby - - rails - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: redmine - sources: - - https://github.com/bitnami/bitnami-docker-redmine - urls: - - https://kubernetes-charts.storage.googleapis.com/redmine-0.3.8.tgz - version: 0.3.8 - - created: 2017-01-31T00:18:28.517014253Z - description: A flexible project management web application. - digest: d9e7c4c47c853413107330d4fc0ad44e9bc3be90057ca722d28042b73f244fe5 - engine: gotpl - home: http://www.redmine.org/ - keywords: - - redmine - - project management - - www - - http - - web - - application - - ruby - - rails - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: redmine - sources: - - https://github.com/bitnami/bitnami-docker-redmine - urls: - - https://kubernetes-charts.storage.googleapis.com/redmine-0.3.7.tgz - version: 0.3.7 - - created: 2016-12-15T21:18:24.678305914Z - description: A flexible project management web application. - digest: 98d9c8c7f241a9418bed6862f7c82295d5d8158cd1702907ced7150e46530768 - engine: gotpl - home: http://www.redmine.org/ - keywords: - - redmine - - project management - - www - - http - - web - - application - - ruby - - rails - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: redmine - sources: - - https://github.com/bitnami/bitnami-docker-redmine - urls: - - https://kubernetes-charts.storage.googleapis.com/redmine-0.3.6.tgz - version: 0.3.6 - - created: 2016-12-05T21:03:20.228049572Z - description: A flexible project management web application. - digest: ae1c2ced129d05cdae28e1fe9c2bed53ded35cd77d96fc1b26f810d334c601e3 - engine: gotpl - home: http://www.redmine.org/ - keywords: - - redmine - - project management - - www - - http - - web - - application - - ruby - - rails - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: redmine - sources: - - https://github.com/bitnami/bitnami-docker-redmine - urls: - - https://kubernetes-charts.storage.googleapis.com/redmine-0.3.5.tgz - version: 0.3.5 - - created: 2016-11-03T19:33:29.122956769Z - description: A flexible project management web application. - digest: c591dea135ef93f4af1a05961333125167ae551cf2b666363fe76b5a7ad9f806 - engine: gotpl - home: http://www.redmine.org/ - keywords: - - redmine - - project management - - www - - http - - web - - application - - ruby - - rails - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: redmine - sources: - - https://github.com/bitnami/bitnami-docker-redmine - urls: - - https://kubernetes-charts.storage.googleapis.com/redmine-0.3.4.tgz - version: 0.3.4 - - created: 2016-10-21T19:18:18.621573514Z - description: A flexible project management web application. - digest: da6a8cb8c355a93ae11d9312be9eca51966d2288eafe96b6724e6154d000b8c3 - engine: gotpl - home: http://www.redmine.org/ - keywords: - - redmine - - project management - - www - - http - - web - - application - - ruby - - rails - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: redmine - sources: - - https://github.com/bitnami/bitnami-docker-redmine - urls: - - https://kubernetes-charts.storage.googleapis.com/redmine-0.3.3.tgz - version: 0.3.3 - - created: 2016-10-19T00:03:14.035726608Z - description: A flexible project management web application. - digest: 052a0a97ff279db43f06c5ceeabfc5bd26f2e5f4f7ce7c24fdbcf761f97af84e - engine: gotpl - home: http://www.redmine.org/ - keywords: - - redmine - - project management - - www - - http - - web - - application - - ruby - - rails - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: redmine - sources: - - https://github.com/bitnami/bitnami-docker-redmine - urls: - - https://kubernetes-charts.storage.googleapis.com/redmine-0.3.2.tgz - version: 0.3.2 - - created: 2016-10-19T00:03:14.034750035Z - description: A flexible project management web application. - digest: 88cf358644be274866ec5e88199c257e18a35fc8bbe97417658b9a0ea1e4a260 - engine: gotpl - home: http://www.redmine.org/ - keywords: - - redmine - - project management - - www - - http - - web - - application - - ruby - - rails - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: redmine - sources: - - https://github.com/bitnami/bitnami-docker-redmine - urls: - - https://kubernetes-charts.storage.googleapis.com/redmine-0.3.1.tgz - version: 0.3.1 - - created: 2016-10-19T00:03:14.033766322Z - description: A flexible project management web application. - digest: f4815d35cbf9f8bb72c051ee528958b9c6f48b1f3bf8b3fdceaadd90d1b88068 - engine: gotpl - home: http://www.redmine.org/ - keywords: - - redmine - - project management - - www - - http - - web - - application - - ruby - - rails - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: redmine - sources: - - https://github.com/bitnami/bitnami-docker-redmine - urls: - - https://kubernetes-charts.storage.googleapis.com/redmine-0.3.0.tgz - version: 0.3.0 - sapho: - - apiVersion: v1 - created: 2017-03-09T19:33:31.160050402Z - description: A micro application development and integration platform that enables - organizations to create and deliver secure micro applications that tie into - existing business systems and track changes to key business data. - digest: 6c499f9875c07b508d23b081ffd991a5737a0acaf1c75def55dbb2dc07bf40ea - engine: gotpl - home: http://www.sapho.com - icon: https://www.sapho.com/wp-content/uploads/2016/04/sapho-logotype.svg - maintainers: - - email: support@sapho.com - name: Sapho - name: sapho - sources: - - https://bitbucket.org/sapho/ops-docker-tomcat/src - - https://hub.docker.com/r/sapho/ops-docker-tomcat - - https://github.com/kubernetes/charts/tree/master/stable/mysql - urls: - - https://kubernetes-charts.storage.googleapis.com/sapho-0.1.5.tgz - version: 0.1.5 - - apiVersion: v1 - created: 2017-02-13T04:33:52.314506112Z - description: A micro application development and integration platform that enables - organizations to create and deliver secure micro applications that tie into - existing business systems and track changes to key business data. - digest: abe8e15b8e51369d6d05033177efb524139d3352794e201003d2e3fce3d0669d - engine: gotpl - maintainers: - - email: support@sapho.com - name: Sapho - name: sapho - sources: - - https://bitbucket.org/sapho/ops-docker-tomcat/src - - https://hub.docker.com/r/sapho/ops-docker-tomcat - - https://github.com/kubernetes/charts/tree/master/stable/mysql - urls: - - https://kubernetes-charts.storage.googleapis.com/sapho-0.1.4.tgz - version: 0.1.4 - - apiVersion: v1 - created: 2017-01-31T00:18:28.518904Z - description: A micro application development and integration platform that enables - organizations to create and deliver secure micro applications that tie into - existing business systems and track changes to key business data. - digest: d93ff20d61a35de8ab23d5d118c177184a6b8b0578a39ba7d101f818a8742851 - engine: gotpl - maintainers: - - email: support@sapho.com - name: Sapho - name: sapho - sources: - - https://bitbucket.org/sapho/ops-docker-tomcat/src - - https://hub.docker.com/r/sapho/ops-docker-tomcat - - https://github.com/kubernetes/charts/tree/master/stable/mysql - urls: - - https://kubernetes-charts.storage.googleapis.com/sapho-0.1.3.tgz - version: 0.1.3 - sensu: - - apiVersion: v1 - created: 2017-03-09T19:33:31.160768724Z - description: Sensu monitoring framework backed by the Redis transport - digest: bb8781a9693f3b6df9389b3098a6298658127df2e86ad8156788602f541f33c3 - engine: gotpl - home: https://sensuapp.org/ - icon: https://raw.githubusercontent.com/sensu/sensu/master/sensu-logo.png - keywords: - - sensu - - monitoring - maintainers: - - email: shane.starcher@gmail.com - name: Shane Starcher - name: sensu - sources: - - https://github.com/kubernetes/charts - - https://github.com/sstarcher/docker-sensu - - https://github.com/sensu/sensu - urls: - - https://kubernetes-charts.storage.googleapis.com/sensu-0.1.1.tgz - version: 0.1.1 - - apiVersion: v1 - created: 2016-12-21T23:33:22.277352049Z - description: Sensu monitoring framework backed by the Redis transport - digest: 4592387df52c4110a3a313820dbea81e8bf0252845e8c08ad7c71bce9a92831c - engine: gotpl - home: https://sensuapp.org/ - icon: https://raw.githubusercontent.com/sensu/sensu/master/sensu-logo.png - keywords: - - sensu - - monitoring - maintainers: - - email: shane.starcher@gmail.com - name: Shane Starcher - name: sensu - sources: - - https://github.com/kubernetes/charts - - https://github.com/sstarcher/docker-sensu - - https://github.com/sensu/sensu - urls: - - https://kubernetes-charts.storage.googleapis.com/sensu-0.1.0.tgz - version: 0.1.0 - spark: - - created: 2017-03-09T19:33:31.161160193Z - description: Fast and general-purpose cluster computing system. - digest: d37ec7d7530a5836eeeb5ff54110d594efe188ce8175a7c2e3b50e5d9f5af9bc - home: http://spark.apache.org - icon: http://spark.apache.org/images/spark-logo-trademark.png - maintainers: - - email: lachlan.evenson@gmail.com - name: Lachlan Evenson - name: spark - sources: - - https://github.com/kubernetes/kubernetes/tree/master/examples/spark - - https://github.com/apache/spark - urls: - - https://kubernetes-charts.storage.googleapis.com/spark-0.1.4.tgz - version: 0.1.4 - - created: 2017-03-09T19:03:32.57258203Z - description: Fast and general-purpose cluster computing system. - digest: 1cea71eb812c7ea6d566ad34247ad8d1c7b2a460b908748372618a94f035d974 - home: http://spark.apache.org - icon: http://spark.apache.org/images/spark-logo-trademark.png - maintainers: - - email: lachlan.evenson@gmail.com - name: Lachlan Evenson - name: spark - sources: - - https://github.com/kubernetes/kubernetes/tree/master/examples/spark - - https://github.com/apache/spark - urls: - - https://kubernetes-charts.storage.googleapis.com/spark-0.1.3.tgz - version: 0.1.3 - - created: 2017-02-13T04:33:52.317122021Z - description: A Apache Spark Helm chart for Kubernetes. Apache Spark is a fast - and general-purpose cluster computing system - digest: fd5559299116691e56c85f60be46e3b1d1a647973f4dfd6c0d87d0b0274a349b - home: http://spark.apache.org/ - maintainers: - - email: lachlan.evenson@gmail.com - name: Lachlan Evenson - name: spark - sources: - - https://github.com/kubernetes/kubernetes/tree/master/examples/spark - - https://github.com/apache/spark - urls: - - https://kubernetes-charts.storage.googleapis.com/spark-0.1.2.tgz - version: 0.1.2 - - created: 2017-01-27T21:48:32.088621169Z - description: A Apache Spark Helm chart for Kubernetes. Apache Spark is a fast - and general-purpose cluster computing system - digest: 884cc07e4710011476db63017b48504cc00b00faf461cdfe83aac40f0fd33e49 - home: http://spark.apache.org/ - maintainers: - - email: lachlan.evenson@gmail.com - name: Lachlan Evenson - name: spark - sources: - - https://github.com/kubernetes/kubernetes/tree/master/examples/spark - - https://github.com/apache/spark - urls: - - https://kubernetes-charts.storage.googleapis.com/spark-0.1.1.tgz - version: 0.1.1 - spartakus: - - created: 2017-03-09T19:33:31.161451869Z - description: Collect information about Kubernetes clusters to help improve the - project. - digest: 7db8a6ac7280c8d112b533b2653cfa8ed43d8517a4cf31d28e24d5761d8c6b80 - engine: gotpl - maintainers: - - email: mgoodness@gmail.com - name: Michael Goodness - name: spartakus - sources: - - https://github.com/kubernetes-incubator/spartakus - urls: - - https://kubernetes-charts.storage.googleapis.com/spartakus-1.1.1.tgz - version: 1.1.1 - - created: 2017-03-02T18:48:30.451198217Z - description: Collect information about Kubernetes clusters to help improve the - project. - digest: 84720960919addcce5b608717eca0218b7f6cd9edbf77a52ddc0747e51037936 - engine: gotpl - maintainers: - - email: mgoodness@gmail.com - name: Michael Goodness - name: spartakus - sources: - - https://github.com/kubernetes-incubator/spartakus - urls: - - https://kubernetes-charts.storage.googleapis.com/spartakus-1.1.0.tgz - version: 1.1.0 - - created: 2017-02-13T17:03:30.144830851Z - description: A Spartakus Helm chart for Kubernetes. Spartakus aims to collect - information about Kubernetes clusters. - digest: 1c202628cd57e01cb324ee6e9457b52d1e1a5fd665f99d4bb25bd17c92c438e9 - engine: gotpl - maintainers: - - email: mgoodness@gmail.com - name: Michael Goodness - name: spartakus - sources: - - https://github.com/kubernetes-incubator/spartakus - urls: - - https://kubernetes-charts.storage.googleapis.com/spartakus-1.0.0.tgz - version: 1.0.0 - spinnaker: - - apiVersion: v1 - created: 2017-03-09T19:33:31.163079351Z - description: Open source, multi-cloud continuous delivery platform for releasing - software changes with high velocity and confidence. - digest: e0876be25e058215bfaa72281a05cc17422f914681642891dfb34412442c116f - home: http://spinnaker.io/ - icon: https://pbs.twimg.com/profile_images/669205226994319362/O7OjwPrh_400x400.png - maintainers: - - email: viglesias@google.com - name: Vic Iglesias - name: spinnaker - sources: - - https://github.com/spinnaker - - https://github.com/viglesiasce/images - urls: - - https://kubernetes-charts.storage.googleapis.com/spinnaker-0.1.1.tgz - version: 0.1.1 - - apiVersion: v1 - created: 2017-02-13T20:48:27.29021219Z - description: A Helm chart for Kubernetes - digest: cc44efeace9d645b2ea824b017986d86b6b3a50fcd94e86199e0e6849eb02731 - home: http://spinnaker.io/ - maintainers: - - email: viglesias@google.com - name: Vic Iglesias - name: spinnaker - sources: - - https://github.com/spinnaker - - https://github.com/viglesiasce/images - urls: - - https://kubernetes-charts.storage.googleapis.com/spinnaker-0.1.0.tgz - version: 0.1.0 - sumokube: - - created: 2017-03-09T19:33:31.163986922Z - description: Sumologic Log Collector - digest: 2f4f5cfc4c1d40cd24085497041fd701f72d4f15cb55241bfb998da82b05c7b9 - keywords: - - monitoring - - logging - maintainers: - - email: jdumars+github@gmail.com - name: Jason DuMars - - email: knoxville+github@gmail.com - name: Sean Knox - name: sumokube - sources: - - https://github.com/SumoLogic/sumologic-collector-docker - urls: - - https://kubernetes-charts.storage.googleapis.com/sumokube-0.1.1.tgz - version: 0.1.1 - - created: 2017-01-27T21:48:32.092039665Z - description: Sumologic Log Collector - digest: 5b173be9b7dc0e1d48a7cd11015b9c405666a40420a290c5fb54e4f8718b4fc0 - keywords: - - monitoring - - logging - maintainers: - - email: jdumars+github@gmail.com - name: Jason DuMars - - email: knoxville+github@gmail.com - name: Sean Knox - name: sumokube - sources: - - https://github.com/SumoLogic/sumologic-collector-docker - urls: - - https://kubernetes-charts.storage.googleapis.com/sumokube-0.1.0.tgz - version: 0.1.0 - telegraf: - - created: 2017-03-09T19:33:31.164563903Z - description: Telegraf is an agent written in Go for collecting, processing, aggregating, - and writing metrics. - digest: 850b4b7543a3dd7f5d33ba65d9098fe4f361981f49452a40ce9774850b4285e3 - engine: gotpl - home: https://www.influxdata.com/time-series-platform/telegraf/ - keywords: - - telegraf - - collector - - timeseries - - influxdata - maintainers: - - email: jack@influxdb.com - name: Jack Zampolin - name: telegraf - urls: - - https://kubernetes-charts.storage.googleapis.com/telegraf-0.2.0.tgz - version: 0.2.0 - - created: 2017-02-13T21:48:52.617397285Z - description: Telegraf is an agent written in Go for collecting, processing, aggregating, - and writing metrics. - digest: 1f74106455808d45d16742f6d7d02164eb328a40dd9699dfa4511b33efaf14e9 - engine: gotpl - home: https://www.influxdata.com/time-series-platform/telegraf/ - keywords: - - telegraf - - collector - - timeseries - - influxdata - maintainers: - - email: jack@influxdb.com - name: Jack Zampolin - name: telegraf - urls: - - https://kubernetes-charts.storage.googleapis.com/telegraf-0.1.1.tgz - version: 0.1.1 - - created: 2017-02-11T03:18:26.54678474Z - description: Chart for Telegraf Kubernetes deployments - digest: 52fa68fd948ee675a5d1a5ffff22d98e293ee37569a8fa56a4022f51e9507184 - engine: gotpl - home: https://www.influxdata.com/time-series-platform/telegraf/ - keywords: - - telegraf - - collector - - timeseries - - influxdata - maintainers: - - email: jack@influxdb.com - name: Jack Zampolin - name: telegraf - urls: - - https://kubernetes-charts.storage.googleapis.com/telegraf-0.1.0.tgz - version: 0.1.0 - testlink: - - created: 2017-03-09T19:33:31.165308586Z - description: Web-based test management system that facilitates software quality - assurance. - digest: 08f7104671364ff6bd43270659733ea97a4adc06181f8a5c3027ac3d0078e51c - engine: gotpl - home: http://www.testlink.org/ - icon: https://bitnami.com/assets/stacks/testlink/img/testlink-stack-220x234.png - keywords: - - testlink - - testing - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: testlink - sources: - - https://github.com/bitnami/bitnami-docker-testlink - urls: - - https://kubernetes-charts.storage.googleapis.com/testlink-0.4.5.tgz - version: 0.4.5 - - created: 2017-03-08T19:03:31.751542723Z - description: Web-based test management system that facilitates software quality - assurance. - digest: 7861921ff159f1be6834acfc3e5c139382a8c6461b20a45c4b1561985827c865 - engine: gotpl - home: http://www.testlink.org/ - icon: https://bitnami.com/assets/stacks/testlink/img/testlink-stack-220x234.png - keywords: - - testlink - - testing - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: testlink - sources: - - https://github.com/bitnami/bitnami-docker-testlink - urls: - - https://kubernetes-charts.storage.googleapis.com/testlink-0.4.4.tgz - version: 0.4.4 - - created: 2017-02-11T03:18:26.547570032Z - description: Web-based test management system that facilitates software quality - assurance. - digest: 2c7188d5f1a9fb03c71b2e2d693dfbef9a739ae8889d9eb38854900cf066077b - engine: gotpl - home: http://www.testlink.org/ - keywords: - - testlink - - testing - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: testlink - sources: - - https://github.com/bitnami/bitnami-docker-testlink - urls: - - https://kubernetes-charts.storage.googleapis.com/testlink-0.4.3.tgz - version: 0.4.3 - - created: 2017-01-21T00:18:31.369288453Z - description: Web-based test management system that facilitates software quality - assurance. - digest: 78f6a9cfe1843b8ea99489d8b4c801f84271ee25827ad044989ed0df21ac086b - engine: gotpl - home: http://www.testlink.org/ - keywords: - - testlink - - testing - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: testlink - sources: - - https://github.com/bitnami/bitnami-docker-testlink - urls: - - https://kubernetes-charts.storage.googleapis.com/testlink-0.4.2.tgz - version: 0.4.2 - - created: 2016-12-15T21:18:24.679744308Z - description: Web-based test management system that facilitates software quality - assurance. - digest: 9edb2777c6db4794885a2c7531a28436774edc248aad3a26007bca4076058143 - engine: gotpl - home: http://www.testlink.org/ - keywords: - - testlink - - testing - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: testlink - sources: - - https://github.com/bitnami/bitnami-docker-testlink - urls: - - https://kubernetes-charts.storage.googleapis.com/testlink-0.4.1.tgz - version: 0.4.1 - - created: 2016-12-09T18:48:20.193151472Z - description: Web-based test management system that facilitates software quality - assurance. - digest: df216a31082cdf15867ee9a17b107e4006e9e0a20b79425889b695c4c46fb0c1 - engine: gotpl - home: http://www.testlink.org/ - keywords: - - testlink - - testing - - http - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: testlink - sources: - - https://github.com/bitnami/bitnami-docker-testlink - urls: - - https://kubernetes-charts.storage.googleapis.com/testlink-0.4.0.tgz - version: 0.4.0 - traefik: - - apiVersion: v1 - created: 2017-03-09T19:33:31.165964362Z - description: A Traefik based Kubernetes ingress controller with Let's Encrypt - support - digest: 9aa401aee6da3b4afc5cc3f8be7ff9f74bf424743ca72a7a7b91a7105d9781b6 - engine: gotpl - home: http://traefik.io/ - icon: http://traefik.io/traefik.logo.png - keywords: - - traefik - - ingress - - acme - - letsencrypt - maintainers: - - email: engineering@deis.com - name: Deis - name: traefik - sources: - - https://github.com/containous/traefik - - https://github.com/krancour/charts/tree/master/traefik - urls: - - https://kubernetes-charts.storage.googleapis.com/traefik-1.1.2-g.tgz - version: 1.1.2-g - - apiVersion: v1 - created: 2017-02-27T17:18:28.185706737Z - description: A Traefik based Kubernetes ingress controller with Let's Encrypt - support - digest: 5bb7b98b962098808e3b73f604592bc4c6e6245e0074fa0c99308fc04bf766b8 - engine: gotpl - home: http://traefik.io/ - icon: http://traefik.io/traefik.logo.png - keywords: - - traefik - - ingress - - acme - - letsencrypt - maintainers: - - email: engineering@deis.com - name: Deis - name: traefik - sources: - - https://github.com/containous/traefik - - https://github.com/krancour/charts/tree/master/traefik - urls: - - https://kubernetes-charts.storage.googleapis.com/traefik-1.1.2-f.tgz - version: 1.1.2-f - - apiVersion: v1 - created: 2017-02-13T22:18:28.973464794Z - description: A Traefik based Kubernetes ingress controller with Let's Encrypt - support - digest: ae467c4bee7364d17de2583d33031d0eeb2ef55e7962a7db0245d692e65479e1 - engine: gotpl - home: http://traefik.io/ - icon: http://traefik.io/traefik.logo.png - keywords: - - traefik - - ingress - - acme - - letsencrypt - maintainers: - - email: engineering@deis.com - name: Deis - name: traefik - sources: - - https://github.com/containous/traefik - - https://github.com/krancour/charts/tree/master/traefik - urls: - - https://kubernetes-charts.storage.googleapis.com/traefik-1.1.2-e.tgz - version: 1.1.2-e - - apiVersion: v1 - created: 2017-02-13T21:33:27.776086791Z - description: A Traefik based Kubernetes ingress controller with Let's Encrypt - support - digest: 399d74bcd8ab26f2de10894d83b59d413752797789b9fe9568e17f7b564f5f75 - engine: gotpl - home: http://traefik.io/ - icon: http://traefik.io/traefik.logo.png - keywords: - - traefik - - ingress - - acme - - letsencrypt - maintainers: - - email: engineering@deis.com - name: Deis - name: traefik - sources: - - https://github.com/containous/traefik - - https://github.com/krancour/charts/tree/master/traefik - urls: - - https://kubernetes-charts.storage.googleapis.com/traefik-1.1.2-d.tgz - version: 1.1.2-d - - apiVersion: v1 - created: 2017-02-03T19:33:30.806247527Z - description: A Traefik based Kubernetes ingress controller with Let's Encrypt - support - digest: e225511060509d9cf3e38eaafd93af9ee994f8ed99c40a25500f4a1d06851841 - engine: gotpl - home: http://traefik.io/ - icon: http://traefik.io/traefik.logo.png - keywords: - - traefik - - ingress - - acme - - letsencrypt - maintainers: - - email: engineering@deis.com - name: Deis - name: traefik - sources: - - https://github.com/containous/traefik - - https://github.com/krancour/charts/tree/master/traefik - urls: - - https://kubernetes-charts.storage.googleapis.com/traefik-1.1.2-c.tgz - version: 1.1.2-c - - apiVersion: v1 - created: 2017-02-01T02:18:29.153394653Z - description: A Traefik based Kubernetes ingress controller with Let's Encrypt - support - digest: 9cc02b2e43c901c92aa560b4f85e325f04635d052035418f3b27b06bdd571ae9 - engine: gotpl - home: http://traefik.io/ - icon: http://traefik.io/traefik.logo.png - keywords: - - traefik - - ingress - - acme - - letsencrypt - maintainers: - - email: engineering@deis.com - name: Deis - name: traefik - sources: - - https://github.com/containous/traefik - - https://github.com/krancour/charts/tree/master/traefik - urls: - - https://kubernetes-charts.storage.googleapis.com/traefik-1.1.2-b.tgz - version: 1.1.2-b - - apiVersion: v1 - created: 2017-01-28T00:18:32.767314879Z - description: A Traefik based Kubernetes ingress controller with Let's Encrypt - support - digest: 9bae960964d5062dd4c412ad7daf6f6f9e8dd070264aa3f44c831c817fc26b7d - engine: gotpl - home: http://traefik.io/ - icon: http://traefik.io/traefik.logo.png - keywords: - - traefik - - ingress - - acme - - letsencrypt - maintainers: - - email: engineering@deis.com - name: Deis - name: traefik - sources: - - https://github.com/containous/traefik - - https://github.com/krancour/charts/tree/master/traefik - urls: - - https://kubernetes-charts.storage.googleapis.com/traefik-1.1.2-a.tgz - version: 1.1.2-a - - apiVersion: v1 - created: 2017-01-03T17:48:20.753425335Z - description: A Traefik based Kubernetes ingress controller with Let's Encrypt - support - digest: e8ab4576505091785b27084e4f4e4f02f1ee3f1744d9842ec086457baabe8b85 - engine: gotpl - home: http://traefik.io/ - icon: http://traefik.io/traefik.logo.png - keywords: - - traefik - - ingress - - acme - - letsencrypt - maintainers: - - email: engineering@deis.com - name: Deis - name: traefik - sources: - - https://github.com/containous/traefik - - https://github.com/krancour/charts/tree/master/traefik - urls: - - https://kubernetes-charts.storage.googleapis.com/traefik-1.1.1-a.tgz - version: 1.1.1-a - - apiVersion: v1 - created: 2016-11-23T00:33:20.024479934Z - description: A Traefik based Kubernetes ingress controller with Let's Encrypt - support - digest: 6664534aab03a22531602a415ca14a72e932b08fe1feab8866cc55ba18b77dc8 - engine: gotpl - home: http://traefik.io/ - icon: http://traefik.io/traefik.logo.png - keywords: - - traefik - - ingress - - acme - - letsencrypt - maintainers: - - email: engineering@deis.com - name: Deis - name: traefik - sources: - - https://github.com/containous/traefik - - https://github.com/krancour/charts/tree/master/traefik - urls: - - https://kubernetes-charts.storage.googleapis.com/traefik-1.1.0-rc3-a.tgz - version: 1.1.0-rc3-a - - apiVersion: v1 - created: 2016-11-30T22:03:20.721274307Z - description: A Traefik based Kubernetes ingress controller with Let's Encrypt - support - digest: 2828d7284839baee1fb36f823ce4e2574a4b675b7f4f74e921a4685f4cee28c2 - engine: gotpl - home: http://traefik.io/ - icon: http://traefik.io/traefik.logo.png - keywords: - - traefik - - ingress - - acme - - letsencrypt - maintainers: - - email: engineering@deis.com - name: Deis - name: traefik - sources: - - https://github.com/containous/traefik - - https://github.com/krancour/charts/tree/master/traefik - urls: - - https://kubernetes-charts.storage.googleapis.com/traefik-1.1.0-a.tgz - version: 1.1.0-a - uchiwa: - - apiVersion: v1 - created: 2017-03-09T19:33:31.166949849Z - description: Dashboard for the Sensu monitoring framework - digest: 9bee21cd61e56e08f58c1ba130e0a4af1a1d62a8d7921f9408509bd501494403 - engine: gotpl - home: https://uchiwa.io/ - icon: https://uchiwa.io/img/favicon.png - keywords: - - uchiwa - - sensu - - monitoring - maintainers: - - email: shane.starcher@gmail.com - name: Shane Starcher - name: uchiwa - sources: - - https://github.com/kubernetes/charts - - https://github.com/sstarcher/docker-uchiwa - - https://github.com/sensu/uchiwa - urls: - - https://kubernetes-charts.storage.googleapis.com/uchiwa-0.2.0.tgz - version: 0.2.0 - - apiVersion: v1 - created: 2017-01-18T23:03:27.817024829Z - description: Dashboard for the Sensu monitoring framework - digest: 868d7e58adb2fead4ed9e4be17e2017c2d1c55d265b2a579625e787e6f15f4d5 - engine: gotpl - home: https://uchiwa.io/ - icon: https://uchiwa.io/img/favicon.png - keywords: - - uchiwa - - sensu - - monitoring - maintainers: - - email: shane.starcher@gmail.com - name: Shane Starcher - name: uchiwa - sources: - - https://github.com/kubernetes/charts - - https://github.com/sstarcher/docker-uchiwa - - https://github.com/sensu/uchiwa - urls: - - https://kubernetes-charts.storage.googleapis.com/uchiwa-0.1.0.tgz - version: 0.1.0 - wordpress: - - created: 2017-03-09T19:33:31.168968362Z - description: Web publishing platform for building blogs and websites. - digest: 306220e3c19f1360644eade517a2a8ca422e8f9ec6ea9c65181ce8fc9797772f - engine: gotpl - home: http://www.wordpress.com/ - icon: https://bitnami.com/assets/stacks/wordpress/img/wordpress-stack-220x234.png - keywords: - - wordpress - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: wordpress - sources: - - https://github.com/bitnami/bitnami-docker-wordpress - urls: - - https://kubernetes-charts.storage.googleapis.com/wordpress-0.4.3.tgz - version: 0.4.3 - - created: 2017-03-08T19:03:31.755452536Z - description: Web publishing platform for building blogs and websites. - digest: 0689b452d3c9a9bee6e5c84b48172c68de6eedc253223b96ab6500ad88a5de40 - engine: gotpl - home: http://www.wordpress.com/ - icon: https://bitnami.com/assets/stacks/wordpress/img/wordpress-stack-220x234.png - keywords: - - wordpress - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: wordpress - sources: - - https://github.com/bitnami/bitnami-docker-wordpress - urls: - - https://kubernetes-charts.storage.googleapis.com/wordpress-0.4.2.tgz - version: 0.4.2 - - created: 2017-02-13T04:33:52.323397093Z - description: Web publishing platform for building blogs and websites. - digest: 0fc412dea55069b368183afefb74342001a91a7f3a0e9126a921581d7740d61c - engine: gotpl - home: http://www.wordpress.com/ - keywords: - - wordpress - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: wordpress - sources: - - https://github.com/bitnami/bitnami-docker-wordpress - urls: - - https://kubernetes-charts.storage.googleapis.com/wordpress-0.4.1.tgz - version: 0.4.1 - - created: 2017-01-28T00:18:32.769124587Z - description: Web publishing platform for building blogs and websites. - digest: 2f4a5d65350b36a6481c4c3d619f713835f091821d3f56c38c718061628ff712 - engine: gotpl - home: http://www.wordpress.com/ - keywords: - - wordpress - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: wordpress - sources: - - https://github.com/bitnami/bitnami-docker-wordpress - urls: - - https://kubernetes-charts.storage.googleapis.com/wordpress-0.4.0.tgz - version: 0.4.0 - - created: 2017-01-04T00:48:19.757447587Z - description: Web publishing platform for building blogs and websites. - digest: f62b6f1728a33c5d59dd24dc6fb984f13d2dffac2bc6eec01724501e66ffc6a0 - engine: gotpl - home: http://www.wordpress.com/ - keywords: - - wordpress - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: wordpress - sources: - - https://github.com/bitnami/bitnami-docker-wordpress - urls: - - https://kubernetes-charts.storage.googleapis.com/wordpress-0.3.4.tgz - version: 0.3.4 - - created: 2016-12-15T00:48:24.021239603Z - description: Web publishing platform for building blogs and websites. - digest: 0c86b7cec5877a3c3c55d919b2f02ae52340c953afd9dc541ae0280bc23fe9aa - engine: gotpl - home: http://www.wordpress.com/ - keywords: - - wordpress - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: wordpress - sources: - - https://github.com/bitnami/bitnami-docker-wordpress - urls: - - https://kubernetes-charts.storage.googleapis.com/wordpress-0.3.3.tgz - version: 0.3.3 - - created: 2016-12-09T18:48:20.19465733Z - description: Web publishing platform for building blogs and websites. - digest: 589e49370cb09f6d9ddb3ceba3b21f52697570cd4b40aff891a660c5daaa9bec - engine: gotpl - home: http://www.wordpress.com/ - keywords: - - wordpress - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: wordpress - sources: - - https://github.com/bitnami/bitnami-docker-wordpress - urls: - - https://kubernetes-charts.storage.googleapis.com/wordpress-0.3.2.tgz - version: 0.3.2 - - created: 2016-10-21T19:18:18.622178432Z - description: Web publishing platform for building blogs and websites. - digest: e70a072dcbb7252becc8899f54de8cb5977ceaea47197919c3990a6896adc350 - engine: gotpl - home: http://www.wordpress.com/ - keywords: - - wordpress - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: wordpress - sources: - - https://github.com/bitnami/bitnami-docker-wordpress - urls: - - https://kubernetes-charts.storage.googleapis.com/wordpress-0.3.1.tgz - version: 0.3.1 - - created: 2016-10-19T00:03:14.037631856Z - description: Web publishing platform for building blogs and websites. - digest: 1c44515f02fb34b722dce1d8cf5fed0dfbbd2f8c03d63b335211b7bcb12b6dea - engine: gotpl - home: http://www.wordpress.com/ - keywords: - - wordpress - - cms - - blog - - http - - web - - application - - php - maintainers: - - email: containers@bitnami.com - name: Bitnami - name: wordpress - sources: - - https://github.com/bitnami/bitnami-docker-wordpress - urls: - - https://kubernetes-charts.storage.googleapis.com/wordpress-0.3.0.tgz - version: 0.3.0 -generated: 2017-03-09T19:33:31.126146665Z diff --git a/deploy/helm/individual/partsunlimitedmrp/charts/.helm/repository/local/index.yaml b/deploy/helm/individual/partsunlimitedmrp/charts/.helm/repository/local/index.yaml deleted file mode 100644 index 48c09c7..0000000 --- a/deploy/helm/individual/partsunlimitedmrp/charts/.helm/repository/local/index.yaml +++ /dev/null @@ -1,3 +0,0 @@ -apiVersion: v1 -entries: {} -generated: 2017-03-10T12:31:05.4896309+05:30 diff --git a/deploy/helm/individual/partsunlimitedmrp/charts/.helm/repository/repositories.yaml b/deploy/helm/individual/partsunlimitedmrp/charts/.helm/repository/repositories.yaml deleted file mode 100644 index 8f305a2..0000000 --- a/deploy/helm/individual/partsunlimitedmrp/charts/.helm/repository/repositories.yaml +++ /dev/null @@ -1,15 +0,0 @@ -apiVersion: v1 -generated: 2017-03-10T12:31:04.5110303+05:30 -repositories: -- caFile: "" - cache: .helm\repository\cache\stable-index.yaml - certFile: "" - keyFile: "" - name: stable - url: https://kubernetes-charts.storage.googleapis.com -- caFile: "" - cache: .helm\repository\cache\local-index.yaml - certFile: "" - keyFile: "" - name: local - url: http://127.0.0.1:8879/charts diff --git a/deploy/helm/individual/partsunlimitedmrp/templates/NOTES.txt b/deploy/helm/individual/partsunlimitedmrp/templates/NOTES.txt deleted file mode 100644 index 2e5d6bc..0000000 --- a/deploy/helm/individual/partsunlimitedmrp/templates/NOTES.txt +++ /dev/null @@ -1,15 +0,0 @@ -1. Get the application URL by running these commands: -{{- if contains "NodePort" .Values.service.type }} - export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ template "fullname" . }}) - export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}") - echo http://$NODE_IP:$NODE_PORT/login -{{- else if contains "LoadBalancer" .Values.service.type }} - NOTE: It may take a few minutes for the LoadBalancer IP to be available. - You can watch the status of by running 'kubectl get svc -w {{ template "fullname" . }}' - export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ template "fullname" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}') - echo http://$SERVICE_IP:{{ .Values.service.externalPort }} -{{- else if contains "ClusterIP" .Values.service.type }} - export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app={{ template "fullname" . }}" -o jsonpath="{.items[0].metadata.name}") - echo "Visit http://127.0.0.1:8080 to use your application" - kubectl port-forward $POD_NAME 8080:{{ .Values.service.internalPort }} -{{- end }} diff --git a/deploy/helm/individual/partsunlimitedmrp/templates/_helpers.tpl b/deploy/helm/individual/partsunlimitedmrp/templates/_helpers.tpl deleted file mode 100644 index f0d83d2..0000000 --- a/deploy/helm/individual/partsunlimitedmrp/templates/_helpers.tpl +++ /dev/null @@ -1,16 +0,0 @@ -{{/* vim: set filetype=mustache: */}} -{{/* -Expand the name of the chart. -*/}} -{{- define "name" -}} -{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}} -{{- end -}} - -{{/* -Create a default fully qualified app name. -We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). -*/}} -{{- define "fullname" -}} -{{- $name := default .Chart.Name .Values.nameOverride -}} -{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}} -{{- end -}} diff --git a/deploy/helm/individual/partsunlimitedmrp/templates/deployment.yaml b/deploy/helm/individual/partsunlimitedmrp/templates/deployment.yaml deleted file mode 100644 index 1b10755..0000000 --- a/deploy/helm/individual/partsunlimitedmrp/templates/deployment.yaml +++ /dev/null @@ -1,24 +0,0 @@ -apiVersion: {{ .Values.apiversion.deployment }} -kind: Deployment -metadata: - name: {{ template "fullname" . }} - labels: - chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" -spec: - replicas: {{ .Values.replicaCount }} - template: - metadata: - labels: - app: {{ template "fullname" . }} - tier: {{ .Values.labels.tier }} - link: {{ .Values.labels.link }} - spec: - containers: - - name: {{ .Chart.Name }} - image: "{{ .Values.image.repository }}/{{ .Values.image.name }}:{{ .Values.image.tag }}" - imagePullPolicy: {{ .Values.image.pullPolicy }} - ports: - - name: {{ .Values.service.portName }} - containerPort: {{ .Values.service.internalPort }} - imagePullSecrets: - - name: {{ .Values.service.imagePullSecrets }} diff --git a/deploy/helm/individual/partsunlimitedmrp/templates/service.yaml b/deploy/helm/individual/partsunlimitedmrp/templates/service.yaml deleted file mode 100644 index 3645dcf..0000000 --- a/deploy/helm/individual/partsunlimitedmrp/templates/service.yaml +++ /dev/null @@ -1,17 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: {{ template "fullname" . }} - labels: - chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" -spec: - type: {{ .Values.service.type }} - ports: - - port: {{ .Values.service.externalPort }} - targetPort: {{ .Values.service.internalPort }} - protocol: TCP - name: {{ .Values.service.name }} - selector: - app: {{ template "fullname" . }} - tier: {{ .Values.labels.tier }} - link: {{ .Values.labels.link }} diff --git a/deploy/helm/individual/prometheus/.helmignore b/deploy/helm/individual/prometheus/.helmignore deleted file mode 100644 index f0c1319..0000000 --- a/deploy/helm/individual/prometheus/.helmignore +++ /dev/null @@ -1,21 +0,0 @@ -# Patterns to ignore when building packages. -# This supports shell glob matching, relative path matching, and -# negation (prefixed with !). Only one pattern per line. -.DS_Store -# Common VCS dirs -.git/ -.gitignore -.bzr/ -.bzrignore -.hg/ -.hgignore -.svn/ -# Common backup files -*.swp -*.bak -*.tmp -*~ -# Various IDEs -.project -.idea/ -*.tmproj diff --git a/deploy/helm/individual/prometheus/templates/_helpers.tpl b/deploy/helm/individual/prometheus/templates/_helpers.tpl deleted file mode 100644 index f0d83d2..0000000 --- a/deploy/helm/individual/prometheus/templates/_helpers.tpl +++ /dev/null @@ -1,16 +0,0 @@ -{{/* vim: set filetype=mustache: */}} -{{/* -Expand the name of the chart. -*/}} -{{- define "name" -}} -{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}} -{{- end -}} - -{{/* -Create a default fully qualified app name. -We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). -*/}} -{{- define "fullname" -}} -{{- $name := default .Chart.Name .Values.nameOverride -}} -{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}} -{{- end -}} diff --git a/deploy/helm/individual/quoteservice/.helmignore b/deploy/helm/individual/quoteservice/.helmignore deleted file mode 100644 index f0c1319..0000000 --- a/deploy/helm/individual/quoteservice/.helmignore +++ /dev/null @@ -1,21 +0,0 @@ -# Patterns to ignore when building packages. -# This supports shell glob matching, relative path matching, and -# negation (prefixed with !). Only one pattern per line. -.DS_Store -# Common VCS dirs -.git/ -.gitignore -.bzr/ -.bzrignore -.hg/ -.hgignore -.svn/ -# Common backup files -*.swp -*.bak -*.tmp -*~ -# Various IDEs -.project -.idea/ -*.tmproj diff --git a/deploy/helm/individual/quoteservice/Chart.yaml b/deploy/helm/individual/quoteservice/Chart.yaml deleted file mode 100644 index 2b2a713..0000000 --- a/deploy/helm/individual/quoteservice/Chart.yaml +++ /dev/null @@ -1,9 +0,0 @@ -apiVersion: v1 -description: A Helm chart for Quotes Service -name: quoteservice -version: 0.1.0 -sources: -- https://dxdevop.visualstudio.com/mrpmicro/_git/code -maintainers: -- name: Parts Unlimited MRP GitHub Team -engine: gotpl diff --git a/deploy/helm/individual/quoteservice/templates/NOTES.txt b/deploy/helm/individual/quoteservice/templates/NOTES.txt deleted file mode 100644 index 2e5d6bc..0000000 --- a/deploy/helm/individual/quoteservice/templates/NOTES.txt +++ /dev/null @@ -1,15 +0,0 @@ -1. Get the application URL by running these commands: -{{- if contains "NodePort" .Values.service.type }} - export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ template "fullname" . }}) - export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}") - echo http://$NODE_IP:$NODE_PORT/login -{{- else if contains "LoadBalancer" .Values.service.type }} - NOTE: It may take a few minutes for the LoadBalancer IP to be available. - You can watch the status of by running 'kubectl get svc -w {{ template "fullname" . }}' - export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ template "fullname" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}') - echo http://$SERVICE_IP:{{ .Values.service.externalPort }} -{{- else if contains "ClusterIP" .Values.service.type }} - export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app={{ template "fullname" . }}" -o jsonpath="{.items[0].metadata.name}") - echo "Visit http://127.0.0.1:8080 to use your application" - kubectl port-forward $POD_NAME 8080:{{ .Values.service.internalPort }} -{{- end }} diff --git a/deploy/helm/individual/quoteservice/templates/_helpers.tpl b/deploy/helm/individual/quoteservice/templates/_helpers.tpl deleted file mode 100644 index f0d83d2..0000000 --- a/deploy/helm/individual/quoteservice/templates/_helpers.tpl +++ /dev/null @@ -1,16 +0,0 @@ -{{/* vim: set filetype=mustache: */}} -{{/* -Expand the name of the chart. -*/}} -{{- define "name" -}} -{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}} -{{- end -}} - -{{/* -Create a default fully qualified app name. -We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). -*/}} -{{- define "fullname" -}} -{{- $name := default .Chart.Name .Values.nameOverride -}} -{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}} -{{- end -}} diff --git a/deploy/helm/individual/quoteservice/templates/deployment.yaml b/deploy/helm/individual/quoteservice/templates/deployment.yaml deleted file mode 100644 index 1b10755..0000000 --- a/deploy/helm/individual/quoteservice/templates/deployment.yaml +++ /dev/null @@ -1,24 +0,0 @@ -apiVersion: {{ .Values.apiversion.deployment }} -kind: Deployment -metadata: - name: {{ template "fullname" . }} - labels: - chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" -spec: - replicas: {{ .Values.replicaCount }} - template: - metadata: - labels: - app: {{ template "fullname" . }} - tier: {{ .Values.labels.tier }} - link: {{ .Values.labels.link }} - spec: - containers: - - name: {{ .Chart.Name }} - image: "{{ .Values.image.repository }}/{{ .Values.image.name }}:{{ .Values.image.tag }}" - imagePullPolicy: {{ .Values.image.pullPolicy }} - ports: - - name: {{ .Values.service.portName }} - containerPort: {{ .Values.service.internalPort }} - imagePullSecrets: - - name: {{ .Values.service.imagePullSecrets }} diff --git a/deploy/helm/individual/quoteservice/templates/service.yaml b/deploy/helm/individual/quoteservice/templates/service.yaml deleted file mode 100644 index ec0b65b..0000000 --- a/deploy/helm/individual/quoteservice/templates/service.yaml +++ /dev/null @@ -1,17 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: {{ template "fullname" . }} - labels: - chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" -spec: - type: {{ .Values.service.type }} - ports: - - port: {{ .Values.service.externalPort }} - targetPort: {{ .Values.service.portName }} - protocol: TCP - name: {{ .Values.service.name }} - selector: - app: {{ template "fullname" . }} - tier: {{ .Values.labels.tier }} - link: {{ .Values.labels.link }} diff --git a/deploy/helm/individual/quoteservice/values.yaml b/deploy/helm/individual/quoteservice/values.yaml deleted file mode 100644 index 3e81770..0000000 --- a/deploy/helm/individual/quoteservice/values.yaml +++ /dev/null @@ -1,29 +0,0 @@ -# Default values for orderservice. -# This is a YAML-formatted file. -# Declare variables to be passed into your templates. -replicaCount: 1 -apiversion: - deployment: apps/v1beta1 # for versions 1.8+ use apps/v1beta2 -image: - repository: mypumrpmicro.azurecr.io/pumrp - name: pumrp-quote - tag: latest - pullPolicy: Always -labels: - tier: backend - link: PartsUnlimitedMrp -service: - name: quote-service - type: ClusterIP - portName: http - externalPort: 80 - internalPort: 8080 - imagePullSecrets: puregistrykey -resources: - limits: - cpu: 100m - memory: 128Mi - requests: - cpu: 100m - memory: 128Mi - diff --git a/deploy/helm/individual/shipmentservice/.helmignore b/deploy/helm/individual/shipmentservice/.helmignore deleted file mode 100644 index f0c1319..0000000 --- a/deploy/helm/individual/shipmentservice/.helmignore +++ /dev/null @@ -1,21 +0,0 @@ -# Patterns to ignore when building packages. -# This supports shell glob matching, relative path matching, and -# negation (prefixed with !). Only one pattern per line. -.DS_Store -# Common VCS dirs -.git/ -.gitignore -.bzr/ -.bzrignore -.hg/ -.hgignore -.svn/ -# Common backup files -*.swp -*.bak -*.tmp -*~ -# Various IDEs -.project -.idea/ -*.tmproj diff --git a/deploy/helm/individual/shipmentservice/Chart.yaml b/deploy/helm/individual/shipmentservice/Chart.yaml deleted file mode 100644 index 3dd610a..0000000 --- a/deploy/helm/individual/shipmentservice/Chart.yaml +++ /dev/null @@ -1,9 +0,0 @@ -apiVersion: v1 -description: A Helm chart for Shipment Service -name: shipmentservice -version: 0.1.0 -sources: -- https://dxdevop.visualstudio.com/mrpmicro/_git/code -maintainers: -- name: Parts Unlimited MRP GitHub Team -engine: gotpl diff --git a/deploy/helm/individual/shipmentservice/templates/NOTES.txt b/deploy/helm/individual/shipmentservice/templates/NOTES.txt deleted file mode 100644 index 2e5d6bc..0000000 --- a/deploy/helm/individual/shipmentservice/templates/NOTES.txt +++ /dev/null @@ -1,15 +0,0 @@ -1. Get the application URL by running these commands: -{{- if contains "NodePort" .Values.service.type }} - export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ template "fullname" . }}) - export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}") - echo http://$NODE_IP:$NODE_PORT/login -{{- else if contains "LoadBalancer" .Values.service.type }} - NOTE: It may take a few minutes for the LoadBalancer IP to be available. - You can watch the status of by running 'kubectl get svc -w {{ template "fullname" . }}' - export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ template "fullname" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}') - echo http://$SERVICE_IP:{{ .Values.service.externalPort }} -{{- else if contains "ClusterIP" .Values.service.type }} - export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app={{ template "fullname" . }}" -o jsonpath="{.items[0].metadata.name}") - echo "Visit http://127.0.0.1:8080 to use your application" - kubectl port-forward $POD_NAME 8080:{{ .Values.service.internalPort }} -{{- end }} diff --git a/deploy/helm/individual/shipmentservice/templates/_helpers.tpl b/deploy/helm/individual/shipmentservice/templates/_helpers.tpl deleted file mode 100644 index f0d83d2..0000000 --- a/deploy/helm/individual/shipmentservice/templates/_helpers.tpl +++ /dev/null @@ -1,16 +0,0 @@ -{{/* vim: set filetype=mustache: */}} -{{/* -Expand the name of the chart. -*/}} -{{- define "name" -}} -{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}} -{{- end -}} - -{{/* -Create a default fully qualified app name. -We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). -*/}} -{{- define "fullname" -}} -{{- $name := default .Chart.Name .Values.nameOverride -}} -{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}} -{{- end -}} diff --git a/deploy/helm/individual/shipmentservice/templates/deployment.yaml b/deploy/helm/individual/shipmentservice/templates/deployment.yaml deleted file mode 100644 index 1b10755..0000000 --- a/deploy/helm/individual/shipmentservice/templates/deployment.yaml +++ /dev/null @@ -1,24 +0,0 @@ -apiVersion: {{ .Values.apiversion.deployment }} -kind: Deployment -metadata: - name: {{ template "fullname" . }} - labels: - chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" -spec: - replicas: {{ .Values.replicaCount }} - template: - metadata: - labels: - app: {{ template "fullname" . }} - tier: {{ .Values.labels.tier }} - link: {{ .Values.labels.link }} - spec: - containers: - - name: {{ .Chart.Name }} - image: "{{ .Values.image.repository }}/{{ .Values.image.name }}:{{ .Values.image.tag }}" - imagePullPolicy: {{ .Values.image.pullPolicy }} - ports: - - name: {{ .Values.service.portName }} - containerPort: {{ .Values.service.internalPort }} - imagePullSecrets: - - name: {{ .Values.service.imagePullSecrets }} diff --git a/deploy/helm/individual/shipmentservice/templates/service.yaml b/deploy/helm/individual/shipmentservice/templates/service.yaml deleted file mode 100644 index ec0b65b..0000000 --- a/deploy/helm/individual/shipmentservice/templates/service.yaml +++ /dev/null @@ -1,17 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: {{ template "fullname" . }} - labels: - chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" -spec: - type: {{ .Values.service.type }} - ports: - - port: {{ .Values.service.externalPort }} - targetPort: {{ .Values.service.portName }} - protocol: TCP - name: {{ .Values.service.name }} - selector: - app: {{ template "fullname" . }} - tier: {{ .Values.labels.tier }} - link: {{ .Values.labels.link }} diff --git a/deploy/helm/individual/shipmentservice/values.yaml b/deploy/helm/individual/shipmentservice/values.yaml deleted file mode 100644 index 9ac9001..0000000 --- a/deploy/helm/individual/shipmentservice/values.yaml +++ /dev/null @@ -1,29 +0,0 @@ -# Default values for orderservice. -# This is a YAML-formatted file. -# Declare variables to be passed into your templates. -replicaCount: 1 -apiversion: - deployment: apps/v1beta1 # for versions 1.8+ use apps/v1beta2 -image: - repository: mypumrpmicro.azurecr.io/pumrp - name: pumrp-shipment - tag: latest - pullPolicy: Always -labels: - tier: backend - link: PartsUnlimitedMrp -service: - name: shipment-service - type: ClusterIP - portName: http - externalPort: 80 - internalPort: 8080 - imagePullSecrets: puregistrykey -resources: - limits: - cpu: 100m - memory: 128Mi - requests: - cpu: 100m - memory: 128Mi - diff --git a/deploy/helm/individual/zipkinserver/.helmignore b/deploy/helm/individual/zipkinserver/.helmignore deleted file mode 100644 index f0c1319..0000000 --- a/deploy/helm/individual/zipkinserver/.helmignore +++ /dev/null @@ -1,21 +0,0 @@ -# Patterns to ignore when building packages. -# This supports shell glob matching, relative path matching, and -# negation (prefixed with !). Only one pattern per line. -.DS_Store -# Common VCS dirs -.git/ -.gitignore -.bzr/ -.bzrignore -.hg/ -.hgignore -.svn/ -# Common backup files -*.swp -*.bak -*.tmp -*~ -# Various IDEs -.project -.idea/ -*.tmproj diff --git a/deploy/helm/individual/zipkinserver/templates/NOTES.txt b/deploy/helm/individual/zipkinserver/templates/NOTES.txt deleted file mode 100644 index 5c5e492..0000000 --- a/deploy/helm/individual/zipkinserver/templates/NOTES.txt +++ /dev/null @@ -1,15 +0,0 @@ -1. Get the application URL by running these commands: -{{- if contains "NodePort" .Values.service.type }} - export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ template "fullname" . }}) - export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}") - echo http://$NODE_IP:$NODE_PORT/login -{{- else if contains "LoadBalancer" .Values.service.type }} - NOTE: It may take a few minutes for the LoadBalancer IP to be available. - You can watch the status of by running 'kubectl get svc -w {{ template "fullname" . }}' - export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ template "fullname" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}') - echo http://$SERVICE_IP:{{ .Values.service.externalPort }} -{{- else if contains "ClusterIP" .Values.service.type }} - export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app={{ template "fullname" . }}" -o jsonpath="{.items[0].metadata.name}") - echo "Visit http://127.0.0.1:8080 to use your application" - kubectl port-forward $POD_NAME 8080:{{ .Values.service.externalPort }} -{{- end }} diff --git a/deploy/helm/individual/zipkinserver/templates/_helpers.tpl b/deploy/helm/individual/zipkinserver/templates/_helpers.tpl deleted file mode 100644 index f0d83d2..0000000 --- a/deploy/helm/individual/zipkinserver/templates/_helpers.tpl +++ /dev/null @@ -1,16 +0,0 @@ -{{/* vim: set filetype=mustache: */}} -{{/* -Expand the name of the chart. -*/}} -{{- define "name" -}} -{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}} -{{- end -}} - -{{/* -Create a default fully qualified app name. -We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). -*/}} -{{- define "fullname" -}} -{{- $name := default .Chart.Name .Values.nameOverride -}} -{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}} -{{- end -}} diff --git a/deploy/helm/individual/zipkinserver/templates/service.yaml b/deploy/helm/individual/zipkinserver/templates/service.yaml deleted file mode 100644 index ec0b65b..0000000 --- a/deploy/helm/individual/zipkinserver/templates/service.yaml +++ /dev/null @@ -1,17 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: {{ template "fullname" . }} - labels: - chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" -spec: - type: {{ .Values.service.type }} - ports: - - port: {{ .Values.service.externalPort }} - targetPort: {{ .Values.service.portName }} - protocol: TCP - name: {{ .Values.service.name }} - selector: - app: {{ template "fullname" . }} - tier: {{ .Values.labels.tier }} - link: {{ .Values.labels.link }} diff --git a/deploy/helm/partsunlimitedmrp/.helmignore b/deploy/helm/partsunlimitedmrp/.helmignore deleted file mode 100644 index f0c1319..0000000 --- a/deploy/helm/partsunlimitedmrp/.helmignore +++ /dev/null @@ -1,21 +0,0 @@ -# Patterns to ignore when building packages. -# This supports shell glob matching, relative path matching, and -# negation (prefixed with !). Only one pattern per line. -.DS_Store -# Common VCS dirs -.git/ -.gitignore -.bzr/ -.bzrignore -.hg/ -.hgignore -.svn/ -# Common backup files -*.swp -*.bak -*.tmp -*~ -# Various IDEs -.project -.idea/ -*.tmproj diff --git a/deploy/helm/partsunlimitedmrp/Chart.yaml b/deploy/helm/partsunlimitedmrp/Chart.yaml deleted file mode 100644 index 26abd6f..0000000 --- a/deploy/helm/partsunlimitedmrp/Chart.yaml +++ /dev/null @@ -1,9 +0,0 @@ -apiVersion: v1 -description: A Helm chart for the entire Parts Unlimited Mrp application suite -name: partsunlimitedmrp -version: 0.1.1 -sources: -- https://github.com/Microsoft/PartsUnlimitedMRPmicro -maintainers: -- name: Parts Unlimited MRP GitHub Team -engine: gotpl \ No newline at end of file diff --git a/deploy/helm/partsunlimitedmrp/charts/catalogservice/.helmignore b/deploy/helm/partsunlimitedmrp/charts/catalogservice/.helmignore deleted file mode 100644 index f0c1319..0000000 --- a/deploy/helm/partsunlimitedmrp/charts/catalogservice/.helmignore +++ /dev/null @@ -1,21 +0,0 @@ -# Patterns to ignore when building packages. -# This supports shell glob matching, relative path matching, and -# negation (prefixed with !). Only one pattern per line. -.DS_Store -# Common VCS dirs -.git/ -.gitignore -.bzr/ -.bzrignore -.hg/ -.hgignore -.svn/ -# Common backup files -*.swp -*.bak -*.tmp -*~ -# Various IDEs -.project -.idea/ -*.tmproj diff --git a/deploy/helm/partsunlimitedmrp/charts/catalogservice/Chart.yaml b/deploy/helm/partsunlimitedmrp/charts/catalogservice/Chart.yaml deleted file mode 100644 index 3cd0a21..0000000 --- a/deploy/helm/partsunlimitedmrp/charts/catalogservice/Chart.yaml +++ /dev/null @@ -1,9 +0,0 @@ -apiVersion: v1 -description: A Helm chart for Catalog Service -name: catalogservice -version: 0.1.1 -sources: -- https://dxdevop.visualstudio.com/mrpmicro/_git/code -maintainers: -- name: Parts Unlimited MRP GitHub Team -engine: gotpl diff --git a/deploy/helm/partsunlimitedmrp/charts/catalogservice/templates/NOTES.txt b/deploy/helm/partsunlimitedmrp/charts/catalogservice/templates/NOTES.txt deleted file mode 100644 index 2e5d6bc..0000000 --- a/deploy/helm/partsunlimitedmrp/charts/catalogservice/templates/NOTES.txt +++ /dev/null @@ -1,15 +0,0 @@ -1. Get the application URL by running these commands: -{{- if contains "NodePort" .Values.service.type }} - export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ template "fullname" . }}) - export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}") - echo http://$NODE_IP:$NODE_PORT/login -{{- else if contains "LoadBalancer" .Values.service.type }} - NOTE: It may take a few minutes for the LoadBalancer IP to be available. - You can watch the status of by running 'kubectl get svc -w {{ template "fullname" . }}' - export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ template "fullname" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}') - echo http://$SERVICE_IP:{{ .Values.service.externalPort }} -{{- else if contains "ClusterIP" .Values.service.type }} - export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app={{ template "fullname" . }}" -o jsonpath="{.items[0].metadata.name}") - echo "Visit http://127.0.0.1:8080 to use your application" - kubectl port-forward $POD_NAME 8080:{{ .Values.service.internalPort }} -{{- end }} diff --git a/deploy/helm/partsunlimitedmrp/charts/catalogservice/templates/_helpers.tpl b/deploy/helm/partsunlimitedmrp/charts/catalogservice/templates/_helpers.tpl deleted file mode 100644 index f0d83d2..0000000 --- a/deploy/helm/partsunlimitedmrp/charts/catalogservice/templates/_helpers.tpl +++ /dev/null @@ -1,16 +0,0 @@ -{{/* vim: set filetype=mustache: */}} -{{/* -Expand the name of the chart. -*/}} -{{- define "name" -}} -{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}} -{{- end -}} - -{{/* -Create a default fully qualified app name. -We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). -*/}} -{{- define "fullname" -}} -{{- $name := default .Chart.Name .Values.nameOverride -}} -{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}} -{{- end -}} diff --git a/deploy/helm/partsunlimitedmrp/charts/catalogservice/templates/deployment.yaml b/deploy/helm/partsunlimitedmrp/charts/catalogservice/templates/deployment.yaml deleted file mode 100644 index 4144946..0000000 --- a/deploy/helm/partsunlimitedmrp/charts/catalogservice/templates/deployment.yaml +++ /dev/null @@ -1,24 +0,0 @@ -apiVersion: {{ .Values.global.apiversion.deployment }} -kind: Deployment -metadata: - name: {{ template "fullname" . }} - labels: - chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" -spec: - replicas: {{ .Values.replicaCount }} - template: - metadata: - labels: - app: {{ template "fullname" . }} - tier: {{ .Values.labels.tier }} - link: {{ .Values.labels.link }} - spec: - containers: - - name: {{ .Chart.Name }} - image: "{{ .Values.global.repository }}/{{ .Values.image.name }}:{{ .Values.image.tag }}" - imagePullPolicy: {{ .Values.image.pullPolicy }} - ports: - - name: {{ .Values.service.portName }} - containerPort: {{ .Values.service.internalPort }} - imagePullSecrets: - - name: {{ .Values.service.imagePullSecrets }} diff --git a/deploy/helm/partsunlimitedmrp/charts/catalogservice/templates/service.yaml b/deploy/helm/partsunlimitedmrp/charts/catalogservice/templates/service.yaml deleted file mode 100644 index ec0b65b..0000000 --- a/deploy/helm/partsunlimitedmrp/charts/catalogservice/templates/service.yaml +++ /dev/null @@ -1,17 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: {{ template "fullname" . }} - labels: - chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" -spec: - type: {{ .Values.service.type }} - ports: - - port: {{ .Values.service.externalPort }} - targetPort: {{ .Values.service.portName }} - protocol: TCP - name: {{ .Values.service.name }} - selector: - app: {{ template "fullname" . }} - tier: {{ .Values.labels.tier }} - link: {{ .Values.labels.link }} diff --git a/deploy/helm/partsunlimitedmrp/charts/catalogservice/values.yaml b/deploy/helm/partsunlimitedmrp/charts/catalogservice/values.yaml deleted file mode 100644 index 25c903d..0000000 --- a/deploy/helm/partsunlimitedmrp/charts/catalogservice/values.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Default values for orderservice. -# This is a YAML-formatted file. -# Declare variables to be passed into your templates. -replicaCount: 1 -image: - name: pumrp-catalog - tag: latest - pullPolicy: IfNotPresent -labels: - tier: backend - link: PartsUnlimitedMrp -service: - name: catalog-service - type: ClusterIP - portName: http - externalPort: 80 - internalPort: 8080 - imagePullSecrets: puregistrykey -resources: - limits: - cpu: 100m - memory: 128Mi - requests: - cpu: 100m - memory: 128Mi diff --git a/deploy/helm/partsunlimitedmrp/charts/dealerservice/.helmignore b/deploy/helm/partsunlimitedmrp/charts/dealerservice/.helmignore deleted file mode 100644 index f0c1319..0000000 --- a/deploy/helm/partsunlimitedmrp/charts/dealerservice/.helmignore +++ /dev/null @@ -1,21 +0,0 @@ -# Patterns to ignore when building packages. -# This supports shell glob matching, relative path matching, and -# negation (prefixed with !). Only one pattern per line. -.DS_Store -# Common VCS dirs -.git/ -.gitignore -.bzr/ -.bzrignore -.hg/ -.hgignore -.svn/ -# Common backup files -*.swp -*.bak -*.tmp -*~ -# Various IDEs -.project -.idea/ -*.tmproj diff --git a/deploy/helm/partsunlimitedmrp/charts/dealerservice/Chart.yaml b/deploy/helm/partsunlimitedmrp/charts/dealerservice/Chart.yaml deleted file mode 100644 index 3b950be..0000000 --- a/deploy/helm/partsunlimitedmrp/charts/dealerservice/Chart.yaml +++ /dev/null @@ -1,9 +0,0 @@ -apiVersion: v1 -description: A Helm chart for Dealer Service -name: dealerservice -version: 0.1.1 -sources: -- https://dxdevop.visualstudio.com/mrpmicro/_git/code -maintainers: -- name: Parts Unlimited MRP GitHub Team -engine: gotpl diff --git a/deploy/helm/partsunlimitedmrp/charts/dealerservice/templates/NOTES.txt b/deploy/helm/partsunlimitedmrp/charts/dealerservice/templates/NOTES.txt deleted file mode 100644 index 2e5d6bc..0000000 --- a/deploy/helm/partsunlimitedmrp/charts/dealerservice/templates/NOTES.txt +++ /dev/null @@ -1,15 +0,0 @@ -1. Get the application URL by running these commands: -{{- if contains "NodePort" .Values.service.type }} - export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ template "fullname" . }}) - export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}") - echo http://$NODE_IP:$NODE_PORT/login -{{- else if contains "LoadBalancer" .Values.service.type }} - NOTE: It may take a few minutes for the LoadBalancer IP to be available. - You can watch the status of by running 'kubectl get svc -w {{ template "fullname" . }}' - export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ template "fullname" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}') - echo http://$SERVICE_IP:{{ .Values.service.externalPort }} -{{- else if contains "ClusterIP" .Values.service.type }} - export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app={{ template "fullname" . }}" -o jsonpath="{.items[0].metadata.name}") - echo "Visit http://127.0.0.1:8080 to use your application" - kubectl port-forward $POD_NAME 8080:{{ .Values.service.internalPort }} -{{- end }} diff --git a/deploy/helm/partsunlimitedmrp/charts/dealerservice/templates/_helpers.tpl b/deploy/helm/partsunlimitedmrp/charts/dealerservice/templates/_helpers.tpl deleted file mode 100644 index f0d83d2..0000000 --- a/deploy/helm/partsunlimitedmrp/charts/dealerservice/templates/_helpers.tpl +++ /dev/null @@ -1,16 +0,0 @@ -{{/* vim: set filetype=mustache: */}} -{{/* -Expand the name of the chart. -*/}} -{{- define "name" -}} -{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}} -{{- end -}} - -{{/* -Create a default fully qualified app name. -We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). -*/}} -{{- define "fullname" -}} -{{- $name := default .Chart.Name .Values.nameOverride -}} -{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}} -{{- end -}} diff --git a/deploy/helm/partsunlimitedmrp/charts/dealerservice/templates/deployment.yaml b/deploy/helm/partsunlimitedmrp/charts/dealerservice/templates/deployment.yaml deleted file mode 100644 index 4144946..0000000 --- a/deploy/helm/partsunlimitedmrp/charts/dealerservice/templates/deployment.yaml +++ /dev/null @@ -1,24 +0,0 @@ -apiVersion: {{ .Values.global.apiversion.deployment }} -kind: Deployment -metadata: - name: {{ template "fullname" . }} - labels: - chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" -spec: - replicas: {{ .Values.replicaCount }} - template: - metadata: - labels: - app: {{ template "fullname" . }} - tier: {{ .Values.labels.tier }} - link: {{ .Values.labels.link }} - spec: - containers: - - name: {{ .Chart.Name }} - image: "{{ .Values.global.repository }}/{{ .Values.image.name }}:{{ .Values.image.tag }}" - imagePullPolicy: {{ .Values.image.pullPolicy }} - ports: - - name: {{ .Values.service.portName }} - containerPort: {{ .Values.service.internalPort }} - imagePullSecrets: - - name: {{ .Values.service.imagePullSecrets }} diff --git a/deploy/helm/partsunlimitedmrp/charts/dealerservice/templates/service.yaml b/deploy/helm/partsunlimitedmrp/charts/dealerservice/templates/service.yaml deleted file mode 100644 index ec0b65b..0000000 --- a/deploy/helm/partsunlimitedmrp/charts/dealerservice/templates/service.yaml +++ /dev/null @@ -1,17 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: {{ template "fullname" . }} - labels: - chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" -spec: - type: {{ .Values.service.type }} - ports: - - port: {{ .Values.service.externalPort }} - targetPort: {{ .Values.service.portName }} - protocol: TCP - name: {{ .Values.service.name }} - selector: - app: {{ template "fullname" . }} - tier: {{ .Values.labels.tier }} - link: {{ .Values.labels.link }} diff --git a/deploy/helm/partsunlimitedmrp/charts/dealerservice/values.yaml b/deploy/helm/partsunlimitedmrp/charts/dealerservice/values.yaml deleted file mode 100644 index 40a988b..0000000 --- a/deploy/helm/partsunlimitedmrp/charts/dealerservice/values.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Default values for orderservice. -# This is a YAML-formatted file. -# Declare variables to be passed into your templates. -replicaCount: 1 -image: - name: pumrp-dealer - tag: latest - pullPolicy: IfNotPresent -labels: - tier: backend - link: PartsUnlimitedMrp -service: - name: dealer-service - type: ClusterIP - portName: http - externalPort: 80 - internalPort: 8080 - imagePullSecrets: puregistrykey -resources: - limits: - cpu: 100m - memory: 128Mi - requests: - cpu: 100m - memory: 128Mi - diff --git a/deploy/helm/partsunlimitedmrp/charts/orderservice/.helmignore b/deploy/helm/partsunlimitedmrp/charts/orderservice/.helmignore deleted file mode 100644 index f0c1319..0000000 --- a/deploy/helm/partsunlimitedmrp/charts/orderservice/.helmignore +++ /dev/null @@ -1,21 +0,0 @@ -# Patterns to ignore when building packages. -# This supports shell glob matching, relative path matching, and -# negation (prefixed with !). Only one pattern per line. -.DS_Store -# Common VCS dirs -.git/ -.gitignore -.bzr/ -.bzrignore -.hg/ -.hgignore -.svn/ -# Common backup files -*.swp -*.bak -*.tmp -*~ -# Various IDEs -.project -.idea/ -*.tmproj diff --git a/deploy/helm/partsunlimitedmrp/charts/orderservice/Chart.yaml b/deploy/helm/partsunlimitedmrp/charts/orderservice/Chart.yaml deleted file mode 100644 index 4958183..0000000 --- a/deploy/helm/partsunlimitedmrp/charts/orderservice/Chart.yaml +++ /dev/null @@ -1,9 +0,0 @@ -apiVersion: v1 -description: A Helm chart for Order Service -name: orderservice -version: 0.1.1 -sources: -- https://dxdevop.visualstudio.com/mrpmicro/_git/code -maintainers: -- name: Parts Unlimited MRP GitHub Team -engine: gotpl diff --git a/deploy/helm/partsunlimitedmrp/charts/orderservice/templates/NOTES.txt b/deploy/helm/partsunlimitedmrp/charts/orderservice/templates/NOTES.txt deleted file mode 100644 index 2e5d6bc..0000000 --- a/deploy/helm/partsunlimitedmrp/charts/orderservice/templates/NOTES.txt +++ /dev/null @@ -1,15 +0,0 @@ -1. Get the application URL by running these commands: -{{- if contains "NodePort" .Values.service.type }} - export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ template "fullname" . }}) - export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}") - echo http://$NODE_IP:$NODE_PORT/login -{{- else if contains "LoadBalancer" .Values.service.type }} - NOTE: It may take a few minutes for the LoadBalancer IP to be available. - You can watch the status of by running 'kubectl get svc -w {{ template "fullname" . }}' - export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ template "fullname" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}') - echo http://$SERVICE_IP:{{ .Values.service.externalPort }} -{{- else if contains "ClusterIP" .Values.service.type }} - export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app={{ template "fullname" . }}" -o jsonpath="{.items[0].metadata.name}") - echo "Visit http://127.0.0.1:8080 to use your application" - kubectl port-forward $POD_NAME 8080:{{ .Values.service.internalPort }} -{{- end }} diff --git a/deploy/helm/partsunlimitedmrp/charts/orderservice/templates/_helpers.tpl b/deploy/helm/partsunlimitedmrp/charts/orderservice/templates/_helpers.tpl deleted file mode 100644 index f0d83d2..0000000 --- a/deploy/helm/partsunlimitedmrp/charts/orderservice/templates/_helpers.tpl +++ /dev/null @@ -1,16 +0,0 @@ -{{/* vim: set filetype=mustache: */}} -{{/* -Expand the name of the chart. -*/}} -{{- define "name" -}} -{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}} -{{- end -}} - -{{/* -Create a default fully qualified app name. -We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). -*/}} -{{- define "fullname" -}} -{{- $name := default .Chart.Name .Values.nameOverride -}} -{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}} -{{- end -}} diff --git a/deploy/helm/partsunlimitedmrp/charts/orderservice/templates/deployment.yaml b/deploy/helm/partsunlimitedmrp/charts/orderservice/templates/deployment.yaml deleted file mode 100644 index 4144946..0000000 --- a/deploy/helm/partsunlimitedmrp/charts/orderservice/templates/deployment.yaml +++ /dev/null @@ -1,24 +0,0 @@ -apiVersion: {{ .Values.global.apiversion.deployment }} -kind: Deployment -metadata: - name: {{ template "fullname" . }} - labels: - chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" -spec: - replicas: {{ .Values.replicaCount }} - template: - metadata: - labels: - app: {{ template "fullname" . }} - tier: {{ .Values.labels.tier }} - link: {{ .Values.labels.link }} - spec: - containers: - - name: {{ .Chart.Name }} - image: "{{ .Values.global.repository }}/{{ .Values.image.name }}:{{ .Values.image.tag }}" - imagePullPolicy: {{ .Values.image.pullPolicy }} - ports: - - name: {{ .Values.service.portName }} - containerPort: {{ .Values.service.internalPort }} - imagePullSecrets: - - name: {{ .Values.service.imagePullSecrets }} diff --git a/deploy/helm/partsunlimitedmrp/charts/orderservice/templates/service.yaml b/deploy/helm/partsunlimitedmrp/charts/orderservice/templates/service.yaml deleted file mode 100644 index ec0b65b..0000000 --- a/deploy/helm/partsunlimitedmrp/charts/orderservice/templates/service.yaml +++ /dev/null @@ -1,17 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: {{ template "fullname" . }} - labels: - chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" -spec: - type: {{ .Values.service.type }} - ports: - - port: {{ .Values.service.externalPort }} - targetPort: {{ .Values.service.portName }} - protocol: TCP - name: {{ .Values.service.name }} - selector: - app: {{ template "fullname" . }} - tier: {{ .Values.labels.tier }} - link: {{ .Values.labels.link }} diff --git a/deploy/helm/partsunlimitedmrp/charts/orderservice/values.yaml b/deploy/helm/partsunlimitedmrp/charts/orderservice/values.yaml deleted file mode 100644 index ff8423b..0000000 --- a/deploy/helm/partsunlimitedmrp/charts/orderservice/values.yaml +++ /dev/null @@ -1,29 +0,0 @@ -# Default values for orderservice. -# This is a YAML-formatted file. -# Declare variables to be passed into your templates. -replicaCount: 1 -apiversion: - deployment: apps/v1beta1 # for versions 1.8+ use apps/v1beta2 -image: - repository: microsoft - name: pumrp-order - tag: latest - pullPolicy: IfNotPresent -labels: - tier: backend - link: PartsUnlimitedMrp -service: - name: order-service - type: ClusterIP - portName: http - externalPort: 80 - internalPort: 8080 - imagePullSecrets: puregistrykey -resources: - limits: - cpu: 100m - memory: 128Mi - requests: - cpu: 100m - memory: 128Mi - diff --git a/deploy/helm/partsunlimitedmrp/charts/partsunlimitedmrp/.helmignore b/deploy/helm/partsunlimitedmrp/charts/partsunlimitedmrp/.helmignore deleted file mode 100644 index f0c1319..0000000 --- a/deploy/helm/partsunlimitedmrp/charts/partsunlimitedmrp/.helmignore +++ /dev/null @@ -1,21 +0,0 @@ -# Patterns to ignore when building packages. -# This supports shell glob matching, relative path matching, and -# negation (prefixed with !). Only one pattern per line. -.DS_Store -# Common VCS dirs -.git/ -.gitignore -.bzr/ -.bzrignore -.hg/ -.hgignore -.svn/ -# Common backup files -*.swp -*.bak -*.tmp -*~ -# Various IDEs -.project -.idea/ -*.tmproj diff --git a/deploy/helm/partsunlimitedmrp/charts/partsunlimitedmrp/Chart.yaml b/deploy/helm/partsunlimitedmrp/charts/partsunlimitedmrp/Chart.yaml deleted file mode 100644 index ffabdb1..0000000 --- a/deploy/helm/partsunlimitedmrp/charts/partsunlimitedmrp/Chart.yaml +++ /dev/null @@ -1,9 +0,0 @@ -apiVersion: v1 -description: A Helm chart for Parts Unlimited Mrp -name: partsunlimitedmrp -version: 0.1.1 -sources: -- https://dxdevop.visualstudio.com/mrpmicro/_git/code -maintainers: -- name: Parts Unlimited MRP GitHub Team -engine: gotpl \ No newline at end of file diff --git a/deploy/helm/partsunlimitedmrp/charts/partsunlimitedmrp/templates/NOTES.txt b/deploy/helm/partsunlimitedmrp/charts/partsunlimitedmrp/templates/NOTES.txt deleted file mode 100644 index 2e5d6bc..0000000 --- a/deploy/helm/partsunlimitedmrp/charts/partsunlimitedmrp/templates/NOTES.txt +++ /dev/null @@ -1,15 +0,0 @@ -1. Get the application URL by running these commands: -{{- if contains "NodePort" .Values.service.type }} - export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ template "fullname" . }}) - export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}") - echo http://$NODE_IP:$NODE_PORT/login -{{- else if contains "LoadBalancer" .Values.service.type }} - NOTE: It may take a few minutes for the LoadBalancer IP to be available. - You can watch the status of by running 'kubectl get svc -w {{ template "fullname" . }}' - export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ template "fullname" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}') - echo http://$SERVICE_IP:{{ .Values.service.externalPort }} -{{- else if contains "ClusterIP" .Values.service.type }} - export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app={{ template "fullname" . }}" -o jsonpath="{.items[0].metadata.name}") - echo "Visit http://127.0.0.1:8080 to use your application" - kubectl port-forward $POD_NAME 8080:{{ .Values.service.internalPort }} -{{- end }} diff --git a/deploy/helm/partsunlimitedmrp/charts/partsunlimitedmrp/templates/_helpers.tpl b/deploy/helm/partsunlimitedmrp/charts/partsunlimitedmrp/templates/_helpers.tpl deleted file mode 100644 index f0d83d2..0000000 --- a/deploy/helm/partsunlimitedmrp/charts/partsunlimitedmrp/templates/_helpers.tpl +++ /dev/null @@ -1,16 +0,0 @@ -{{/* vim: set filetype=mustache: */}} -{{/* -Expand the name of the chart. -*/}} -{{- define "name" -}} -{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}} -{{- end -}} - -{{/* -Create a default fully qualified app name. -We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). -*/}} -{{- define "fullname" -}} -{{- $name := default .Chart.Name .Values.nameOverride -}} -{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}} -{{- end -}} diff --git a/deploy/helm/partsunlimitedmrp/charts/partsunlimitedmrp/templates/deployment.yaml b/deploy/helm/partsunlimitedmrp/charts/partsunlimitedmrp/templates/deployment.yaml deleted file mode 100644 index 4144946..0000000 --- a/deploy/helm/partsunlimitedmrp/charts/partsunlimitedmrp/templates/deployment.yaml +++ /dev/null @@ -1,24 +0,0 @@ -apiVersion: {{ .Values.global.apiversion.deployment }} -kind: Deployment -metadata: - name: {{ template "fullname" . }} - labels: - chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" -spec: - replicas: {{ .Values.replicaCount }} - template: - metadata: - labels: - app: {{ template "fullname" . }} - tier: {{ .Values.labels.tier }} - link: {{ .Values.labels.link }} - spec: - containers: - - name: {{ .Chart.Name }} - image: "{{ .Values.global.repository }}/{{ .Values.image.name }}:{{ .Values.image.tag }}" - imagePullPolicy: {{ .Values.image.pullPolicy }} - ports: - - name: {{ .Values.service.portName }} - containerPort: {{ .Values.service.internalPort }} - imagePullSecrets: - - name: {{ .Values.service.imagePullSecrets }} diff --git a/deploy/helm/partsunlimitedmrp/charts/partsunlimitedmrp/values.yaml b/deploy/helm/partsunlimitedmrp/charts/partsunlimitedmrp/values.yaml deleted file mode 100644 index f603a70..0000000 --- a/deploy/helm/partsunlimitedmrp/charts/partsunlimitedmrp/values.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Default values for PartsUnlimitedMrp. -# This is a YAML-formatted file. -# Declare variables to be passed into your templates. -replicaCount: 1 -image: - name: pumrp-web - tag: latest - pullPolicy: IfNotPresent -labels: - tier: frontend - link: PartsUnlimitedMrp -service: - name: pu-mrp-frontend - type: LoadBalancer - externalPort: 80 - internalPort: 8080 - imagePullSecrets: puregistrykey -resources: - limits: - cpu: 100m - memory: 128Mi - requests: - cpu: 100m - memory: 128Mi - diff --git a/deploy/helm/partsunlimitedmrp/charts/quoteservice/.helmignore b/deploy/helm/partsunlimitedmrp/charts/quoteservice/.helmignore deleted file mode 100644 index f0c1319..0000000 --- a/deploy/helm/partsunlimitedmrp/charts/quoteservice/.helmignore +++ /dev/null @@ -1,21 +0,0 @@ -# Patterns to ignore when building packages. -# This supports shell glob matching, relative path matching, and -# negation (prefixed with !). Only one pattern per line. -.DS_Store -# Common VCS dirs -.git/ -.gitignore -.bzr/ -.bzrignore -.hg/ -.hgignore -.svn/ -# Common backup files -*.swp -*.bak -*.tmp -*~ -# Various IDEs -.project -.idea/ -*.tmproj diff --git a/deploy/helm/partsunlimitedmrp/charts/quoteservice/Chart.yaml b/deploy/helm/partsunlimitedmrp/charts/quoteservice/Chart.yaml deleted file mode 100644 index e9967a3..0000000 --- a/deploy/helm/partsunlimitedmrp/charts/quoteservice/Chart.yaml +++ /dev/null @@ -1,9 +0,0 @@ -apiVersion: v1 -description: A Helm chart for Quotes Service -name: quoteservice -version: 0.1.1 -sources: -- https://dxdevop.visualstudio.com/mrpmicro/_git/code -maintainers: -- name: Parts Unlimited MRP GitHub Team -engine: gotpl diff --git a/deploy/helm/partsunlimitedmrp/charts/quoteservice/templates/NOTES.txt b/deploy/helm/partsunlimitedmrp/charts/quoteservice/templates/NOTES.txt deleted file mode 100644 index 2e5d6bc..0000000 --- a/deploy/helm/partsunlimitedmrp/charts/quoteservice/templates/NOTES.txt +++ /dev/null @@ -1,15 +0,0 @@ -1. Get the application URL by running these commands: -{{- if contains "NodePort" .Values.service.type }} - export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ template "fullname" . }}) - export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}") - echo http://$NODE_IP:$NODE_PORT/login -{{- else if contains "LoadBalancer" .Values.service.type }} - NOTE: It may take a few minutes for the LoadBalancer IP to be available. - You can watch the status of by running 'kubectl get svc -w {{ template "fullname" . }}' - export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ template "fullname" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}') - echo http://$SERVICE_IP:{{ .Values.service.externalPort }} -{{- else if contains "ClusterIP" .Values.service.type }} - export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app={{ template "fullname" . }}" -o jsonpath="{.items[0].metadata.name}") - echo "Visit http://127.0.0.1:8080 to use your application" - kubectl port-forward $POD_NAME 8080:{{ .Values.service.internalPort }} -{{- end }} diff --git a/deploy/helm/partsunlimitedmrp/charts/quoteservice/templates/_helpers.tpl b/deploy/helm/partsunlimitedmrp/charts/quoteservice/templates/_helpers.tpl deleted file mode 100644 index f0d83d2..0000000 --- a/deploy/helm/partsunlimitedmrp/charts/quoteservice/templates/_helpers.tpl +++ /dev/null @@ -1,16 +0,0 @@ -{{/* vim: set filetype=mustache: */}} -{{/* -Expand the name of the chart. -*/}} -{{- define "name" -}} -{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}} -{{- end -}} - -{{/* -Create a default fully qualified app name. -We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). -*/}} -{{- define "fullname" -}} -{{- $name := default .Chart.Name .Values.nameOverride -}} -{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}} -{{- end -}} diff --git a/deploy/helm/partsunlimitedmrp/charts/quoteservice/templates/deployment.yaml b/deploy/helm/partsunlimitedmrp/charts/quoteservice/templates/deployment.yaml deleted file mode 100644 index 4144946..0000000 --- a/deploy/helm/partsunlimitedmrp/charts/quoteservice/templates/deployment.yaml +++ /dev/null @@ -1,24 +0,0 @@ -apiVersion: {{ .Values.global.apiversion.deployment }} -kind: Deployment -metadata: - name: {{ template "fullname" . }} - labels: - chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" -spec: - replicas: {{ .Values.replicaCount }} - template: - metadata: - labels: - app: {{ template "fullname" . }} - tier: {{ .Values.labels.tier }} - link: {{ .Values.labels.link }} - spec: - containers: - - name: {{ .Chart.Name }} - image: "{{ .Values.global.repository }}/{{ .Values.image.name }}:{{ .Values.image.tag }}" - imagePullPolicy: {{ .Values.image.pullPolicy }} - ports: - - name: {{ .Values.service.portName }} - containerPort: {{ .Values.service.internalPort }} - imagePullSecrets: - - name: {{ .Values.service.imagePullSecrets }} diff --git a/deploy/helm/partsunlimitedmrp/charts/quoteservice/templates/service.yaml b/deploy/helm/partsunlimitedmrp/charts/quoteservice/templates/service.yaml deleted file mode 100644 index ec0b65b..0000000 --- a/deploy/helm/partsunlimitedmrp/charts/quoteservice/templates/service.yaml +++ /dev/null @@ -1,17 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: {{ template "fullname" . }} - labels: - chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" -spec: - type: {{ .Values.service.type }} - ports: - - port: {{ .Values.service.externalPort }} - targetPort: {{ .Values.service.portName }} - protocol: TCP - name: {{ .Values.service.name }} - selector: - app: {{ template "fullname" . }} - tier: {{ .Values.labels.tier }} - link: {{ .Values.labels.link }} diff --git a/deploy/helm/partsunlimitedmrp/charts/quoteservice/values.yaml b/deploy/helm/partsunlimitedmrp/charts/quoteservice/values.yaml deleted file mode 100644 index 25c4cae..0000000 --- a/deploy/helm/partsunlimitedmrp/charts/quoteservice/values.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Default values for orderservice. -# This is a YAML-formatted file. -# Declare variables to be passed into your templates. -replicaCount: 1 -image: - name: pumrp-quote - tag: latest - pullPolicy: IfNotPresent -labels: - tier: backend - link: PartsUnlimitedMrp -service: - name: quote-service - type: ClusterIP - portName: http - externalPort: 80 - internalPort: 8080 - imagePullSecrets: puregistrykey -resources: - limits: - cpu: 100m - memory: 128Mi - requests: - cpu: 100m - memory: 128Mi - diff --git a/deploy/helm/partsunlimitedmrp/charts/shipmentservice/.helmignore b/deploy/helm/partsunlimitedmrp/charts/shipmentservice/.helmignore deleted file mode 100644 index f0c1319..0000000 --- a/deploy/helm/partsunlimitedmrp/charts/shipmentservice/.helmignore +++ /dev/null @@ -1,21 +0,0 @@ -# Patterns to ignore when building packages. -# This supports shell glob matching, relative path matching, and -# negation (prefixed with !). Only one pattern per line. -.DS_Store -# Common VCS dirs -.git/ -.gitignore -.bzr/ -.bzrignore -.hg/ -.hgignore -.svn/ -# Common backup files -*.swp -*.bak -*.tmp -*~ -# Various IDEs -.project -.idea/ -*.tmproj diff --git a/deploy/helm/partsunlimitedmrp/charts/shipmentservice/Chart.yaml b/deploy/helm/partsunlimitedmrp/charts/shipmentservice/Chart.yaml deleted file mode 100644 index c255d44..0000000 --- a/deploy/helm/partsunlimitedmrp/charts/shipmentservice/Chart.yaml +++ /dev/null @@ -1,9 +0,0 @@ -apiVersion: v1 -description: A Helm chart for Shipment Service -name: shipmentservice -version: 0.1.1 -sources: -- https://dxdevop.visualstudio.com/mrpmicro/_git/code -maintainers: -- name: Parts Unlimited MRP GitHub Team -engine: gotpl diff --git a/deploy/helm/partsunlimitedmrp/charts/shipmentservice/templates/NOTES.txt b/deploy/helm/partsunlimitedmrp/charts/shipmentservice/templates/NOTES.txt deleted file mode 100644 index 2e5d6bc..0000000 --- a/deploy/helm/partsunlimitedmrp/charts/shipmentservice/templates/NOTES.txt +++ /dev/null @@ -1,15 +0,0 @@ -1. Get the application URL by running these commands: -{{- if contains "NodePort" .Values.service.type }} - export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ template "fullname" . }}) - export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}") - echo http://$NODE_IP:$NODE_PORT/login -{{- else if contains "LoadBalancer" .Values.service.type }} - NOTE: It may take a few minutes for the LoadBalancer IP to be available. - You can watch the status of by running 'kubectl get svc -w {{ template "fullname" . }}' - export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ template "fullname" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}') - echo http://$SERVICE_IP:{{ .Values.service.externalPort }} -{{- else if contains "ClusterIP" .Values.service.type }} - export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app={{ template "fullname" . }}" -o jsonpath="{.items[0].metadata.name}") - echo "Visit http://127.0.0.1:8080 to use your application" - kubectl port-forward $POD_NAME 8080:{{ .Values.service.internalPort }} -{{- end }} diff --git a/deploy/helm/partsunlimitedmrp/charts/shipmentservice/templates/_helpers.tpl b/deploy/helm/partsunlimitedmrp/charts/shipmentservice/templates/_helpers.tpl deleted file mode 100644 index f0d83d2..0000000 --- a/deploy/helm/partsunlimitedmrp/charts/shipmentservice/templates/_helpers.tpl +++ /dev/null @@ -1,16 +0,0 @@ -{{/* vim: set filetype=mustache: */}} -{{/* -Expand the name of the chart. -*/}} -{{- define "name" -}} -{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}} -{{- end -}} - -{{/* -Create a default fully qualified app name. -We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). -*/}} -{{- define "fullname" -}} -{{- $name := default .Chart.Name .Values.nameOverride -}} -{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}} -{{- end -}} diff --git a/deploy/helm/partsunlimitedmrp/charts/shipmentservice/templates/deployment.yaml b/deploy/helm/partsunlimitedmrp/charts/shipmentservice/templates/deployment.yaml deleted file mode 100644 index 4144946..0000000 --- a/deploy/helm/partsunlimitedmrp/charts/shipmentservice/templates/deployment.yaml +++ /dev/null @@ -1,24 +0,0 @@ -apiVersion: {{ .Values.global.apiversion.deployment }} -kind: Deployment -metadata: - name: {{ template "fullname" . }} - labels: - chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" -spec: - replicas: {{ .Values.replicaCount }} - template: - metadata: - labels: - app: {{ template "fullname" . }} - tier: {{ .Values.labels.tier }} - link: {{ .Values.labels.link }} - spec: - containers: - - name: {{ .Chart.Name }} - image: "{{ .Values.global.repository }}/{{ .Values.image.name }}:{{ .Values.image.tag }}" - imagePullPolicy: {{ .Values.image.pullPolicy }} - ports: - - name: {{ .Values.service.portName }} - containerPort: {{ .Values.service.internalPort }} - imagePullSecrets: - - name: {{ .Values.service.imagePullSecrets }} diff --git a/deploy/helm/partsunlimitedmrp/charts/shipmentservice/templates/service.yaml b/deploy/helm/partsunlimitedmrp/charts/shipmentservice/templates/service.yaml deleted file mode 100644 index ec0b65b..0000000 --- a/deploy/helm/partsunlimitedmrp/charts/shipmentservice/templates/service.yaml +++ /dev/null @@ -1,17 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: {{ template "fullname" . }} - labels: - chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" -spec: - type: {{ .Values.service.type }} - ports: - - port: {{ .Values.service.externalPort }} - targetPort: {{ .Values.service.portName }} - protocol: TCP - name: {{ .Values.service.name }} - selector: - app: {{ template "fullname" . }} - tier: {{ .Values.labels.tier }} - link: {{ .Values.labels.link }} diff --git a/deploy/helm/partsunlimitedmrp/charts/shipmentservice/values.yaml b/deploy/helm/partsunlimitedmrp/charts/shipmentservice/values.yaml deleted file mode 100644 index 30c33ed..0000000 --- a/deploy/helm/partsunlimitedmrp/charts/shipmentservice/values.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Default values for orderservice. -# This is a YAML-formatted file. -# Declare variables to be passed into your templates. -replicaCount: 1 -image: - name: pumrp-shipment - tag: latest - pullPolicy: IfNotPresent -labels: - tier: backend - link: PartsUnlimitedMrp -service: - name: shipment-service - type: ClusterIP - portName: http - externalPort: 80 - internalPort: 8080 - imagePullSecrets: puregistrykey -resources: - limits: - cpu: 100m - memory: 128Mi - requests: - cpu: 100m - memory: 128Mi - diff --git a/deploy/helm/partsunlimitedmrp/templates/NOTES.txt b/deploy/helm/partsunlimitedmrp/templates/NOTES.txt deleted file mode 100644 index 5c5e492..0000000 --- a/deploy/helm/partsunlimitedmrp/templates/NOTES.txt +++ /dev/null @@ -1,15 +0,0 @@ -1. Get the application URL by running these commands: -{{- if contains "NodePort" .Values.service.type }} - export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ template "fullname" . }}) - export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}") - echo http://$NODE_IP:$NODE_PORT/login -{{- else if contains "LoadBalancer" .Values.service.type }} - NOTE: It may take a few minutes for the LoadBalancer IP to be available. - You can watch the status of by running 'kubectl get svc -w {{ template "fullname" . }}' - export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ template "fullname" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}') - echo http://$SERVICE_IP:{{ .Values.service.externalPort }} -{{- else if contains "ClusterIP" .Values.service.type }} - export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app={{ template "fullname" . }}" -o jsonpath="{.items[0].metadata.name}") - echo "Visit http://127.0.0.1:8080 to use your application" - kubectl port-forward $POD_NAME 8080:{{ .Values.service.externalPort }} -{{- end }} diff --git a/deploy/helm/partsunlimitedmrp/templates/_helpers.tpl b/deploy/helm/partsunlimitedmrp/templates/_helpers.tpl deleted file mode 100644 index f0d83d2..0000000 --- a/deploy/helm/partsunlimitedmrp/templates/_helpers.tpl +++ /dev/null @@ -1,16 +0,0 @@ -{{/* vim: set filetype=mustache: */}} -{{/* -Expand the name of the chart. -*/}} -{{- define "name" -}} -{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}} -{{- end -}} - -{{/* -Create a default fully qualified app name. -We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). -*/}} -{{- define "fullname" -}} -{{- $name := default .Chart.Name .Values.nameOverride -}} -{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}} -{{- end -}} diff --git a/deploy/helm/partsunlimitedmrp/values.yaml b/deploy/helm/partsunlimitedmrp/values.yaml deleted file mode 100644 index cb24e35..0000000 --- a/deploy/helm/partsunlimitedmrp/values.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Default values for PartsUnlimitedMrp. -# This is a YAML-formatted file. -# Declare variables to be passed into your templates. -replicaCount: 1 -image: - tag: latest - pullPolicy: IfNotPresent -labels: - tier: frontend - link: PartsUnlimitedMrp -service: - name: pu-mrp-frontend - type: LoadBalancer - externalPort: 80 - internalPort: 5500 - imagePullSecrets: puregistrykey -resources: - limits: - cpu: 100m - memory: 128Mi - requests: - cpu: 100m - memory: 128Mi -global: - repository: microsoft - apiversion: - deployment: apps/v1beta1 # for versions 1.8+ use apps/v1beta2 \ No newline at end of file diff --git a/deploy/helm/individual/dealerservice/.helmignore b/deploy/helm/prometheus/.helmignore similarity index 100% rename from deploy/helm/individual/dealerservice/.helmignore rename to deploy/helm/prometheus/.helmignore diff --git a/deploy/helm/individual/prometheus/Chart.yaml b/deploy/helm/prometheus/Chart.yaml similarity index 100% rename from deploy/helm/individual/prometheus/Chart.yaml rename to deploy/helm/prometheus/Chart.yaml diff --git a/deploy/helm/individual/fluentd/sidecar/templates/NOTES.txt b/deploy/helm/prometheus/templates/NOTES.txt similarity index 100% rename from deploy/helm/individual/fluentd/sidecar/templates/NOTES.txt rename to deploy/helm/prometheus/templates/NOTES.txt diff --git a/deploy/helm/individual/dealerservice/templates/_helpers.tpl b/deploy/helm/prometheus/templates/_helpers.tpl similarity index 100% rename from deploy/helm/individual/dealerservice/templates/_helpers.tpl rename to deploy/helm/prometheus/templates/_helpers.tpl diff --git a/deploy/helm/individual/prometheus/templates/configmap.yaml b/deploy/helm/prometheus/templates/configmap.yaml similarity index 100% rename from deploy/helm/individual/prometheus/templates/configmap.yaml rename to deploy/helm/prometheus/templates/configmap.yaml diff --git a/deploy/helm/individual/prometheus/templates/deployment.yaml b/deploy/helm/prometheus/templates/deployment.yaml similarity index 100% rename from deploy/helm/individual/prometheus/templates/deployment.yaml rename to deploy/helm/prometheus/templates/deployment.yaml diff --git a/deploy/helm/individual/prometheus/templates/service.yaml b/deploy/helm/prometheus/templates/service.yaml similarity index 100% rename from deploy/helm/individual/prometheus/templates/service.yaml rename to deploy/helm/prometheus/templates/service.yaml diff --git a/deploy/helm/individual/prometheus/values.yaml b/deploy/helm/prometheus/values.yaml similarity index 100% rename from deploy/helm/individual/prometheus/values.yaml rename to deploy/helm/prometheus/values.yaml diff --git a/deploy/helm/individual/fluentd/daemonset/.helmignore b/deploy/helm/pumrpmicro/.helmignore similarity index 100% rename from deploy/helm/individual/fluentd/daemonset/.helmignore rename to deploy/helm/pumrpmicro/.helmignore diff --git a/deploy/helm/individual/apigateway/Chart.yaml b/deploy/helm/pumrpmicro/Chart.yaml similarity index 62% rename from deploy/helm/individual/apigateway/Chart.yaml rename to deploy/helm/pumrpmicro/Chart.yaml index 97d60b1..b0c3de3 100644 --- a/deploy/helm/individual/apigateway/Chart.yaml +++ b/deploy/helm/pumrpmicro/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 -description: A Helm chart for Parts Unlimited Mrp +description: A Helm chart for Parts Unlimited MRP all API services name: partsunlimitedmrp -version: 0.1.0 +version: 1.0.0 sources: - https://github.com/Microsoft/PartsUnlimitedMRPmicro maintainers: diff --git a/deploy/helm/individual/catalogservice/templates/NOTES.txt b/deploy/helm/pumrpmicro/templates/NOTES.txt similarity index 81% rename from deploy/helm/individual/catalogservice/templates/NOTES.txt rename to deploy/helm/pumrpmicro/templates/NOTES.txt index 2e5d6bc..2b2b453 100644 --- a/deploy/helm/individual/catalogservice/templates/NOTES.txt +++ b/deploy/helm/pumrpmicro/templates/NOTES.txt @@ -9,7 +9,6 @@ export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ template "fullname" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}') echo http://$SERVICE_IP:{{ .Values.service.externalPort }} {{- else if contains "ClusterIP" .Values.service.type }} - export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app={{ template "fullname" . }}" -o jsonpath="{.items[0].metadata.name}") + kubectl port-forward svc/{{.Values.image.name}}-svc 8080:{{ .Values.service.externalPort }} echo "Visit http://127.0.0.1:8080 to use your application" - kubectl port-forward $POD_NAME 8080:{{ .Values.service.internalPort }} {{- end }} diff --git a/deploy/helm/individual/fluentd/daemonset/templates/_helpers.tpl b/deploy/helm/pumrpmicro/templates/_helpers.tpl similarity index 100% rename from deploy/helm/individual/fluentd/daemonset/templates/_helpers.tpl rename to deploy/helm/pumrpmicro/templates/_helpers.tpl diff --git a/deploy/helm/individual/dealerservice/templates/deployment.yaml b/deploy/helm/pumrpmicro/templates/deployment.yaml similarity index 50% rename from deploy/helm/individual/dealerservice/templates/deployment.yaml rename to deploy/helm/pumrpmicro/templates/deployment.yaml index 1b10755..588e1d0 100644 --- a/deploy/helm/individual/dealerservice/templates/deployment.yaml +++ b/deploy/helm/pumrpmicro/templates/deployment.yaml @@ -1,18 +1,25 @@ apiVersion: {{ .Values.apiversion.deployment }} kind: Deployment metadata: - name: {{ template "fullname" . }} + name: {{ .Values.image.name }}-deployment labels: chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" spec: replicas: {{ .Values.replicaCount }} + selector: + matchLabels: + app: {{ .Values.image.name }} + tier: {{ .Values.labels.tier }} + link: {{ .Values.labels.link }} template: metadata: labels: - app: {{ template "fullname" . }} + app: {{ .Values.image.name }} tier: {{ .Values.labels.tier }} link: {{ .Values.labels.link }} spec: + imagePullSecrets: + - name: {{ .Values.image.imagePullSecrets }} containers: - name: {{ .Chart.Name }} image: "{{ .Values.image.repository }}/{{ .Values.image.name }}:{{ .Values.image.tag }}" @@ -20,5 +27,17 @@ spec: ports: - name: {{ .Values.service.portName }} containerPort: {{ .Values.service.internalPort }} - imagePullSecrets: - - name: {{ .Values.service.imagePullSecrets }} + env: + - name: mongo_conn + valueFrom: + secretKeyRef: + name: cosmosdb + key: connection + - name: mongo_database + valueFrom: + secretKeyRef: + name: cosmosdb + key: database + - name: expose_port + value: {{ .Values.service.internalPort | quote }} + diff --git a/deploy/helm/partsunlimitedmrp/charts/partsunlimitedmrp/templates/service.yaml b/deploy/helm/pumrpmicro/templates/service.yaml similarity index 76% rename from deploy/helm/partsunlimitedmrp/charts/partsunlimitedmrp/templates/service.yaml rename to deploy/helm/pumrpmicro/templates/service.yaml index 3645dcf..a9e2b0a 100644 --- a/deploy/helm/partsunlimitedmrp/charts/partsunlimitedmrp/templates/service.yaml +++ b/deploy/helm/pumrpmicro/templates/service.yaml @@ -1,7 +1,7 @@ apiVersion: v1 kind: Service metadata: - name: {{ template "fullname" . }} + name: {{ .Values.image.name }}-svc labels: chart: "{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}" spec: @@ -10,8 +10,8 @@ spec: - port: {{ .Values.service.externalPort }} targetPort: {{ .Values.service.internalPort }} protocol: TCP - name: {{ .Values.service.name }} + name: "http-{{ .Values.image.name }}" selector: - app: {{ template "fullname" . }} + app: {{ .Values.image.name }} tier: {{ .Values.labels.tier }} link: {{ .Values.labels.link }} diff --git a/deploy/helm/individual/partsunlimitedmrp/values.yaml b/deploy/helm/pumrpmicro/values.yaml similarity index 76% rename from deploy/helm/individual/partsunlimitedmrp/values.yaml rename to deploy/helm/pumrpmicro/values.yaml index 44ba06d..468e32f 100644 --- a/deploy/helm/individual/partsunlimitedmrp/values.yaml +++ b/deploy/helm/pumrpmicro/values.yaml @@ -3,26 +3,24 @@ # Declare variables to be passed into your templates. replicaCount: 1 apiversion: - deployment: apps/v1beta1 # for versions 1.8+ use apps/v1beta2 + deployment: apps/v1 # for versions 1.8 use apps/v1beta2 image: repository: mypumrpmicro.azurecr.io/pumrp name: pumrp-web tag: latest pullPolicy: Always + imagePullSecrets: puregistrykey labels: - tier: frontend + tier: backend link: PartsUnlimitedMrp service: - name: pu-mrp-frontend - type: LoadBalancer + type: ClusterIP externalPort: 80 internalPort: 8080 - imagePullSecrets: puregistrykey resources: limits: cpu: 100m memory: 128Mi requests: - cpu: 100m memory: 128Mi diff --git a/deploy/helm/individual/fluentd/sidecar/.helmignore b/deploy/helm/zipkinserver/.helmignore similarity index 100% rename from deploy/helm/individual/fluentd/sidecar/.helmignore rename to deploy/helm/zipkinserver/.helmignore diff --git a/deploy/helm/individual/zipkinserver/Chart.yaml b/deploy/helm/zipkinserver/Chart.yaml similarity index 100% rename from deploy/helm/individual/zipkinserver/Chart.yaml rename to deploy/helm/zipkinserver/Chart.yaml diff --git a/deploy/helm/individual/prometheus/templates/NOTES.txt b/deploy/helm/zipkinserver/templates/NOTES.txt similarity index 100% rename from deploy/helm/individual/prometheus/templates/NOTES.txt rename to deploy/helm/zipkinserver/templates/NOTES.txt diff --git a/deploy/helm/individual/fluentd/sidecar/templates/_helpers.tpl b/deploy/helm/zipkinserver/templates/_helpers.tpl similarity index 100% rename from deploy/helm/individual/fluentd/sidecar/templates/_helpers.tpl rename to deploy/helm/zipkinserver/templates/_helpers.tpl diff --git a/deploy/helm/individual/zipkinserver/templates/deployment.yaml b/deploy/helm/zipkinserver/templates/deployment.yaml similarity index 100% rename from deploy/helm/individual/zipkinserver/templates/deployment.yaml rename to deploy/helm/zipkinserver/templates/deployment.yaml diff --git a/deploy/helm/individual/catalogservice/templates/service.yaml b/deploy/helm/zipkinserver/templates/service.yaml similarity index 100% rename from deploy/helm/individual/catalogservice/templates/service.yaml rename to deploy/helm/zipkinserver/templates/service.yaml diff --git a/deploy/helm/individual/zipkinserver/values.yaml b/deploy/helm/zipkinserver/values.yaml similarity index 100% rename from deploy/helm/individual/zipkinserver/values.yaml rename to deploy/helm/zipkinserver/values.yaml diff --git a/deploy/load_mock_data.js b/deploy/load_mock_data.js index be18199..42154ae 100644 --- a/deploy/load_mock_data.js +++ b/deploy/load_mock_data.js @@ -2,9 +2,10 @@ const MongoClient = require('mongodb').MongoClient; const assert = require('assert'); -const user = 'your_user'; -const pass = encodeURIComponent('your_password'); -const dbName = 'yourdbname'; +var mongopass = process.argv[3] || 'your_password' +const user = process.argv[2] || 'your_user'; +const pass = encodeURIComponent(mongopass); +const dbName = process.argv[2] || 'your_db'; // Connection URL const url = `mongodb://${user}:${pass}@${dbName}.documents.azure.com:10255/?ssl=true`; @@ -12,7 +13,7 @@ const url = `mongodb://${user}:${pass}@${dbName}.documents.azure.com:10255/?ssl= // Database Name // Use connect method to connect to the server -MongoClient.connect(url, function (err, client) { +MongoClient.connect(url, { useNewUrlParser: true }, function (err, client) { assert.equal(null, err); console.log("Connected successfully to server"); @@ -40,7 +41,7 @@ MongoClient.connect(url, function (err, client) { ] ); - db.collection("dealers").insert({ "name": "Terry Adams", "address": "17760 Northeast 67th Court, Redmond, WA 98052", "email": "terry@adams.com", "phone": "425-885-6217" }); + db.collection("dealers").insertOne({ "name": "Terry Adams", "address": "17760 Northeast 67th Court, Redmond, WA 98052", "email": "terry@adams.com", "phone": "425-885-6217" }); db.collection("quotes").insertMany( [ { @@ -144,5 +145,6 @@ MongoClient.connect(url, function (err, client) { "events": [] } ]) + console.log("Records Imported"); client.close(); });