Skip to content

Commit

Permalink
Renamed all assets to 'service-fabric'
Browse files Browse the repository at this point in the history
  • Loading branch information
daviddob committed Dec 3, 2018
1 parent d1cc728 commit 5063457
Show file tree
Hide file tree
Showing 9 changed files with 37 additions and 33 deletions.
36 changes: 18 additions & 18 deletions README.md
@@ -1,7 +1,7 @@
# BOSH release for azure-service-fabric
# BOSH release for service-fabric

This BOSH release and deployment manifest deploy a linux based standalone cluster of
azure-service-fabric.
service-fabric.

# Deployment

Expand Down Expand Up @@ -119,7 +119,7 @@ applicable) below that.

```yaml
---
name: azure-service-fabric
name: service-fabric

instance_groups:
- name: service-fabric
Expand All @@ -134,7 +134,7 @@ instance_groups:
swap_size: 0
jobs:
- name: service-fabric
release: azure-service-fabric
release: service-fabric
properties:
PrimaryAccountNTLMPasswordSecret: Secret-1
SecondaryAccountNTLMPasswordSecret: Secret-2
Expand Down Expand Up @@ -181,7 +181,7 @@ instance_groups:
-----BEGIN CERTIFICATE-----
-----END CERTIFICATE-----
- name: repair
release: azure-service-fabric
release: service-fabric
properties: {}

- name: smoke-test
Expand All @@ -196,7 +196,7 @@ instance_groups:
ipv6: {enable: true}
jobs:
- name: smoke-test
release: azure-service-fabric
release: service-fabric

- name: upgrade
azs: [z1]
Expand All @@ -210,7 +210,7 @@ instance_groups:
ipv6: {enable: true}
jobs:
- name: upgrade
release: azure-service-fabric
release: service-fabric
properties:
FabricCodeVersion: 6.3.129.1
```
Expand Down Expand Up @@ -242,9 +242,9 @@ Finally after filling out the manifest according to your needs, `bosh deploy` th

```bash
export BOSH_ENVIRONMENT=<bosh-alias>
export BOSH_DEPLOYMENT=azure-service-fabric
git clone https://github.com/cloudfoundry-community/azure-service-fabric-boshrelease.git
bosh deploy azure-service-fabric-boshrelease/manifests/azure-service-fabric.yml
export BOSH_DEPLOYMENT=service-fabric
git clone https://github.com/cloudfoundry-community/service-fabric-boshrelease.git
bosh deploy service-fabric-boshrelease/manifests/service-fabric.yml
```

# Smoke Tests
Expand All @@ -259,7 +259,7 @@ pull an image from dockerhub.
To run the smoke-test errand execute the following commmands:
```bash
export BOSH_ENVIRONMENT=<bosh-alias>
export BOSH_DEPLOYMENT=azure-service-fabric
export BOSH_DEPLOYMENT=service-fabric
bosh run-errand smoke-test
```
# Service Fabric Upgrades
Expand Down Expand Up @@ -289,30 +289,30 @@ Example configration for a specific version is shown below (Specifically the
ipv6: {enable: true}
jobs:
- name: upgrade
release: azure-service-fabric
release: service-fabric
properties:
FabricCodeVersion: 6.3.129.1
```

To run the upgrade errand execute the following commmands:
```bash
export BOSH_ENVIRONMENT=<bosh-alias>
export BOSH_DEPLOYMENT=azure-service-fabric
export BOSH_DEPLOYMENT=service-fabric
bosh run-errand upgrade
```

# Bosh Upgrades

When new versions of `azure-service-fabric-boshrelease` are released the
`manifests/azure-service-fabric.yml` file will be updated. This means you can
When new versions of `service-fabric-boshrelease` are released the
`manifests/service-fabric.yml` file will be updated. This means you can
easily `git pull` and `bosh deploy` to upgrade to a new version of the
bosh-release. New versions of the release will include updates for new stemcell
versions as well as the most recent version of ServiceFabric.

```bash
export BOSH_ENVIRONMENT=<bosh-alias>
export BOSH_DEPLOYMENT=azure-service-fabric
cd azure-service-fabric-boshrelease
export BOSH_DEPLOYMENT=service-fabric
cd service-fabric-boshrelease
git pull
bosh deploy manifests/azure-service-fabric.yml
bosh deploy manifests/service-fabric.yml
```
2 changes: 1 addition & 1 deletion ci/pipeline.yml
Expand Up @@ -528,4 +528,4 @@ resources:
region_name: (( grab meta.aws.region_name ))
access_key_id: (( grab meta.aws.access_key ))
secret_access_key: (( grab meta.aws.secret_key ))
regexp: "compiled-releases/azure-service-fabric/.*-(\\d+).tgz"
regexp: "compiled-releases/service-fabric/.*-(\\d+).tgz"
4 changes: 4 additions & 0 deletions ci/release_notes.md
@@ -0,0 +1,4 @@
## Updates

- Changed the name of the release to be `service-fabric`
- Removed azure specific naming and ensured cross IaaS compaitibility
6 changes: 3 additions & 3 deletions ci/settings.yml
@@ -1,6 +1,6 @@
---
meta:
name: azure-service-fabric
name: service-fabric
target: service-fabric
url: https://pipes.starkandwayne.com

Expand All @@ -23,8 +23,8 @@ meta:
aws:
bucket: (( grab meta.pipeline ))
region_name: us-east-1
access_key: ((cfcommunity.access))
secret_key: ((cfcommunity.secret))
access_key: ((s3cmd.access))
secret_key: ((s3cmd.secret))

github:
owner: starkandwayne
Expand Down
4 changes: 2 additions & 2 deletions config/final.yml
Expand Up @@ -2,5 +2,5 @@
blobstore:
provider: s3
options:
bucket_name: azure-service-fabric-boshrelease
final_name: azure-service-fabric
bucket_name: service-fabric-boshrelease
final_name: service-fabric
@@ -1,10 +1,10 @@
---
name: azure-service-fabric
name: service-fabric

instance_groups:
- name: service-fabric
azs: [z1,z2,z3]
instances: 5
instances: 7
vm_type: service-fabric
stemcell: default
networks: [{name: service-fabric}]
Expand All @@ -14,10 +14,10 @@ instance_groups:
swap_size: 0
jobs:
- name: service-fabric
release: azure-service-fabric
release: service-fabric
properties: {}
- name: repair
release: azure-service-fabric
release: service-fabric
properties: {}

- name: smoke-test
Expand All @@ -32,7 +32,7 @@ instance_groups:
ipv6: {enable: true}
jobs:
- name: smoke-test
release: azure-service-fabric
release: service-fabric

- name: upgrade
azs: [z1]
Expand All @@ -46,7 +46,7 @@ instance_groups:
ipv6: {enable: true}
jobs:
- name: upgrade
release: azure-service-fabric
release: service-fabric

variables: []

Expand All @@ -63,7 +63,7 @@ update:
serial: false

releases:
- name: azure-service-fabric
- name: service-fabric
sha1: 61b95fc9694cc4b1d2dc51ab8dab241488a32b25
stemcell:
os: ubuntu-xenial
Expand Down
File renamed without changes.
@@ -1,4 +1,4 @@
name: azure-service-fabric
name: service-fabric
version: 0.7.0
commit_hash: a734dc6
uncommitted_changes: false
Expand Down
@@ -1,4 +1,4 @@
name: azure-service-fabric
name: service-fabric
version: 0.7.1
commit_hash: f6cf8a6
uncommitted_changes: false
Expand Down

0 comments on commit 5063457

Please sign in to comment.