This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- type: replace | |
path: /instance_groups/name=prometheus/jobs/- | |
value: | |
name: graphite_exporter | |
release: prometheus | |
properties: | |
graphite_exporter: | |
graphite: | |
mapping_strict_match: true | |
mapping_config: | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Updated a9s BOSH Releases | |
https://s3-eu-west-1.amazonaws.com/anynines-bosh-releases/rabbitmq37-1.1.0.tgz | |
https://s3-eu-west-1.amazonaws.com/anynines-bosh-releases/rabbitmq36-12.1.0.tgz | |
https://s3-eu-west-1.amazonaws.com/anynines-bosh-releases/backup-agent-26.tgz | |
https://s3-eu-west-1.amazonaws.com/anynines-bosh-releases/logstash-35.tgz | |
https://s3-eu-west-1.amazonaws.com/anynines-bosh-releases/logstash-34.tgz | |
https://s3-eu-west-1.amazonaws.com/anynines-bosh-releases/service-smoke-tests-53.16.tgz | |
https://s3-eu-west-1.amazonaws.com/anynines-bosh-releases/template-uploader-errand-65.tgz | |
https://s3-eu-west-1.amazonaws.com/anynines-bosh-releases/template-uploader-errand-68.tgz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/iaas-config/a9s-concourse-vsphere.yml b/iaas-config/a9s-concourse-vsphere.yml | |
index c4d051a..899bfd8 100644 | |
--- a/iaas-config/a9s-concourse-vsphere.yml | |
+++ b/iaas-config/a9s-concourse-vsphere.yml | |
@@ -8,15 +8,15 @@ iaas: | |
app_domain: apps.a9s-ds-concourse.a9s-ops.de | |
consul_ips: | |
- 10.244.5.17 | |
- consul_instances: 3 | |
+ consul_instances: 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
metadata: | |
displayName: "a9s RabbitMQ for PCF" | |
imageUrl: 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAgAAAAIACAYAAAD0eNT6AAAAAXNSR0IArs4c6QAAQABJREFUeAHsnQm8HEW1/0/3bHeZGwgEWQMJZENIWCIgohh8qAgIiIA8RXkqrs8NnzyFBB0kARdUngv+FTdQHygPWRRE5UlUeCyCQNiyQQKEPRDInbvM1v0/pyc33uTOdPdMVW8zv/pwuXOnq05VfbvT51TVqVMGIYEACMSegF1Y0DNSeXp7y6Qptm1sTwZNIbu2PVnGFG78pr/tftswsgZRlmzK2fzbMCjHn7M2/zbIlu83fa7ncTpuUInzlg2bSiy3bJPxz8/8Hcsr8/eb8tj82RhiOeu57Itk2uvJSL0ofxuG/aJp0frezC4vGoWlo7GHigaCQJcT4H/bSCAAAlERYMWeHqVnd6ta9nTDsqaxIp5u2/Y0wzZ2qit521Hutk19UbWxnXrZ8Bh2jATDcIwD27CfNQxjLb9w1timuTZtGmt6aKd1bChU25GPMiAAAuoEYACoM4QEEGhKgJW5MXLezF2rNXM6j45ZwVvTeYQ9jUfjrOid31NZ6aeaCujgC/zyqTGLJ3nmYC3/XsNM2EAw1/Asx9p0ylrT+6VVT7HRwHiQQAAEgiAAAyAIqpDZlQTsC+dOLhZH5/IU+Vyy7XmsueYxiH35c74rgah22jCKLOJBfkktY6bLmOMD+XzPA8bZD2xQFY3yIAACxJOMSCAAAi0RkGn7Ij03x6hU5/I/oXkW2fN49DqXp+mntiQImdsiwMsLT/KMwQMmsVFA9jI7k34gTzsux3JCWzhRqIsJwADo4puPrvsjMFKYM61WqR7GU/aHscl8KJd6NU/tZ/2VRq4wCPBSQZnreZj9Dm7nVYPbUpn0bb2F5WvDqBt1gEBSCcAASOqdQ7s |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*.postgres.*.node.dc1.001bosh001pde1.bicsvc.com.conflicts.*.*.* | |
name="postgres_conflicts_${5}" | |
guid="$1" | |
node="$2" | |
conflict_number="$3" | |
database="$4" | |
*.postgres.*.node.dc1.001bosh001pde1.bicsvc.com.database.*.*.* | |
name="postgres_database_${5}" | |
guid="$1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
cert_names=`credhub curl -p /api/v1/certificates | jq '.certificates | .[].name'` | |
for cert in $cert_names; do | |
cert_json=`credhub get -n $cert --output-json` | |
echo $cert_json | jq '.value | .ca' -r > /tmp/tmpca | |
echo $cert_json | jq '.value | .certificate' -r > /tmp/tmpcert | |
if [[ $(< /tmp/tmpca) != "null" ]]; then |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/var/vcap/packages/ruby/bin/ruby | |
require 'tempfile' | |
class CleanerCommand | |
attr_reader :deployment_list_filename | |
def self.run!(deployment_list_filename) | |
new(deployment_list_filename).execute! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/var/vcap/packages/ruby/bin/ruby | |
require 'tempfile' | |
class CleanerCommand | |
attr_reader :deployment_list_filename | |
def self.run!(deployment_list_filename) | |
new(deployment_list_filename).execute! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mapping_config: | | |
*.*.*.*.*.system_cpu_user | |
name="bosh_job_cpu_user" | |
bosh_name="$1" | |
bosh_deployment="$2" | |
bosh_job_name="$3" | |
bosh_job_id="$4" | |
bosh_job_index="$4" | |
*.*.*.*.*.system_load_1m |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
redis_service: | |
network: dynamic | |
stemcells: | |
service: *a9s-stemcell-default | |
plans: *a9s-stemcell-default | |
services: | |
a9s-redis32: | |
name: a9s-redis32 | |
guid: ce7d9d95-6877-4151-9e58-249745aebd77 | |
description: 'This is a service creating and managing dedicated Redis service instances, powered by the anynines Service Framework' |
OlderNewer