diff options
author | Hemanth Nakkina <nh863p@att.com> | 2018-12-04 14:57:37 +0530 |
---|---|---|
committer | Hemanth Nakkina <nh863p@att.com> | 2018-12-04 18:51:57 +0530 |
commit | 303fce156b44e2ad76669579467b2eb40c23d893 (patch) | |
tree | c9a08417aa8d8e998ee38c2cac88b2968798400e | |
parent | 0c8ecf37515b40ccfd9f60894f219baca53b372f (diff) |
Fix: remove references to previous repo
Remove references to att-comdev/spyglass repo
Change-Id: Ie07a5ae6062e61c2705a056713a9fb50ad2361fe
Notes
Notes (review):
Code-Review+2: Roman Gorshunov <roman.gorshunov@att.com>
Code-Review+2: Aaron Sheffield <ajs@sheffieldfamily.net>
Workflow+1: Aaron Sheffield <ajs@sheffieldfamily.net>
Verified+2: Zuul
Submitted-by: Zuul
Submitted-at: Tue, 04 Dec 2018 20:24:26 +0000
Reviewed-on: https://review.openstack.org/622135
Project: openstack/airship-spyglass
Branch: refs/heads/master
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | doc/source/getting_started.rst | 4 | ||||
-rw-r--r-- | setup.py | 2 | ||||
-rw-r--r-- | spyglass/examples/templates/secrets/certificates/certificates.yaml.j2 | 3 | ||||
-rwxr-xr-x | tools/spyglass.sh | 2 |
5 files changed, 6 insertions, 7 deletions
@@ -14,7 +14,7 @@ | |||
14 | 14 | ||
15 | SPYGLASS_BUILD_CTX ?= . | 15 | SPYGLASS_BUILD_CTX ?= . |
16 | IMAGE_NAME ?= spyglass | 16 | IMAGE_NAME ?= spyglass |
17 | IMAGE_PREFIX ?= att-comdev | 17 | IMAGE_PREFIX ?= airshipit |
18 | DOCKER_REGISTRY ?= quay.io | 18 | DOCKER_REGISTRY ?= quay.io |
19 | IMAGE_TAG ?= latest | 19 | IMAGE_TAG ?= latest |
20 | PROXY ?= http://proxy.foo.com:8000 | 20 | PROXY ?= http://proxy.foo.com:8000 |
diff --git a/doc/source/getting_started.rst b/doc/source/getting_started.rst index d8d52ba..bca3532 100644 --- a/doc/source/getting_started.rst +++ b/doc/source/getting_started.rst | |||
@@ -132,13 +132,13 @@ Before using Spyglass you must: | |||
132 | 132 | ||
133 | .. code-block:: console | 133 | .. code-block:: console |
134 | 134 | ||
135 | git clone https://github.com/att-comdev/spyglass | 135 | git clone https://github.com/openstack/airship-spyglass |
136 | 136 | ||
137 | 2. Install the required packages in spyglass: | 137 | 2. Install the required packages in spyglass: |
138 | 138 | ||
139 | .. code-block:: console | 139 | .. code-block:: console |
140 | 140 | ||
141 | pip3 install -r tugboat/requirements.txt | 141 | pip3 install -r airship-spyglass/requirements.txt |
142 | 142 | ||
143 | 143 | ||
144 | CLI Options | 144 | CLI Options |
@@ -19,7 +19,7 @@ setup( | |||
19 | name='spyglass', | 19 | name='spyglass', |
20 | version='0.0.1', | 20 | version='0.0.1', |
21 | description='Generate Airship specific yaml manifests from data sources', | 21 | description='Generate Airship specific yaml manifests from data sources', |
22 | url='http://github.com/att-comdev/spyglass', | 22 | url='http://github.com/openstack/airship-spyglass', |
23 | python_requires='>=3.5.0', | 23 | python_requires='>=3.5.0', |
24 | license='Apache 2.0', | 24 | license='Apache 2.0', |
25 | packages=find_packages(), | 25 | packages=find_packages(), |
diff --git a/spyglass/examples/templates/secrets/certificates/certificates.yaml.j2 b/spyglass/examples/templates/secrets/certificates/certificates.yaml.j2 index 5cb4018..6e3b993 100644 --- a/spyglass/examples/templates/secrets/certificates/certificates.yaml.j2 +++ b/spyglass/examples/templates/secrets/certificates/certificates.yaml.j2 | |||
@@ -1,7 +1,6 @@ | |||
1 | --- | 1 | --- |
2 | # Certs generated by Promenade, see docs at | 2 | # Certs generated by Promenade, see docs at |
3 | # TODO: move to https://github.com/openstack/airship-treasuremap/blob/master/docs/source/authoring_and_deployment.rst | 3 | # https://github.com/openstack/airship-treasuremap/blob/master/doc/source/authoring_and_deployment.rst |
4 | # https://github.com/att-comdev/treasuremap/blob/master/docs/source/deployment.rst#sitenew_sitepkipki-catalogyaml | ||
5 | data: | | 4 | data: | |
6 | -----BEGIN CERTIFICATE----- | 5 | -----BEGIN CERTIFICATE----- |
7 | MIIDSDCCAjCgAwIBAgIUegkh/antB1XyDVHdP5dv+0MZyBcwDQYJKoZIhvcNAQEL | 6 | MIIDSDCCAjCgAwIBAgIUegkh/antB1XyDVHdP5dv+0MZyBcwDQYJKoZIhvcNAQEL |
diff --git a/tools/spyglass.sh b/tools/spyglass.sh index 4d93440..dd2f555 100755 --- a/tools/spyglass.sh +++ b/tools/spyglass.sh | |||
@@ -3,7 +3,7 @@ | |||
3 | set -e | 3 | set -e |
4 | 4 | ||
5 | : ${WORKSPACE:=$(pwd)} | 5 | : ${WORKSPACE:=$(pwd)} |
6 | : ${IMAGE:=quay.io/att-comdev/spyglass:latest} | 6 | : ${IMAGE:=quay.io/airshipit/spyglass:latest} |
7 | 7 | ||
8 | echo | 8 | echo |
9 | echo "== NOTE: Workspace $WORKSPACE is the execution directory in the container ==" | 9 | echo "== NOTE: Workspace $WORKSPACE is the execution directory in the container ==" |