Skip to content

Commit 8529bed

Browse files
Merge pull request #6 from bczoma/68545-linkfix
Fixes #6: links and namings
2 parents d6efb7f + 0611e16 commit 8529bed

13 files changed

+25
-26
lines changed

README.md

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This is a 5 step process:
2121
2. Use the button below to go to the Solace Developer portal and request a Solace Community edition VMR. This process will return an email with a Download link. Download the Solace VMR image.
2222

2323
<a href="http://dev.solace.com/downloads/download_vmr-ce-docker" target="_blank">
24-
<img src="https://raw.githubusercontent.com/SolaceProducts/solace-kubernetes-quickstart/68545/images/register.png"/>
24+
<img src="/images/register.png"/>
2525
</a>
2626

2727
3. Load the Solace VMR image into a Docker container registry.
@@ -40,16 +40,16 @@ This is a 5 step process:
4040
Download and execute the following cluster create and deployment script on command line. This will create and start a small size non-HA VMR deployment with simple local non-persistent storage.
4141

4242
```sh
43-
wget https://raw.githubusercontent.com/SolaceProducts/solace-kubernetes-quickstart/68545/scripts/start_vmr.sh
43+
wget https://raw.githubusercontent.com/SolaceProducts/solace-kubernetes-quickstart/master/scripts/start_vmr.sh
4444
chmod 755 start_vmr.sh
4545
./start_vmr.sh -p ${PASSWORD } -i ${SOLACE_IMAGE_URL}
4646
```
4747

4848
#### Using other VMR deployment configurations
4949

50-
The properties of the VMR deployment are defined in the `values.yaml` file located at the `solace-kubernetes-quickstart/helm` directory which has been created as a result of running the script.
50+
The properties of the VMR deployment are defined in the `values.yaml` file located at the `solace-kubernetes-quickstart/solace` directory which has been created as a result of running the script.
5151

52-
The `solace-kubernetes-quickstart/helm/values-examples` directory provides examples for `values.yaml` for several storage options:
52+
The `solace-kubernetes-quickstart/solace/values-examples` directory provides examples for `values.yaml` for several storage options:
5353

5454
* `small-direct-noha` (default): the simple local non-persistent storage
5555
* `small-direct-noha-existingVolume`: to bind the PVC to an existing external volume in the network.
@@ -72,26 +72,26 @@ Now you can validate your deployment on command line:
7272

7373
```sh
7474
prompt:~$kubectl get statefulset,services,pods,pvc
75-
NAME DESIRED CURRENT AGE
76-
statefulsets/XXX-XXX-solace-kubernetes 1 1 2m
77-
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
78-
svc/kubernetes ClusterIP 10.19.240.1 <none> 443/TCP 26m
79-
svc/XXX-XXX-solace-kubernetes LoadBalancer 10.19.245.131 104.154.136.44 22:31061/TCP,8080:30037/TCP,55555:31723/TCP 2m
80-
NAME READY STATUS RESTARTS AGE
81-
po/XXX-XXX-solace-kubernetes-0 1/1 Running 0 2m
82-
NAME STATUS VOLUME CAPACITY ACCESS MODES STORAGECLASS AGE
83-
pvc/data-XXX-XXX-solace-kubernetes-0 Bound pvc-63ce3ad3-cae1-11e7-ae62-42010a800120 30Gi RWO XXX-XXX-standard 2
84-
85-
86-
prompt:~$ kubectl describe service XXX-XXX-solace-kubernetes
87-
Name: XXX-XXX-solace-kubernetes
75+
NAME DESIRED CURRENT AGE
76+
statefulsets/XXX-XXX-solace 1 1 2m
77+
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
78+
svc/kubernetes ClusterIP 10.19.240.1 <none> 443/TCP 26m
79+
svc/XXX-XXX-solace LoadBalancer 10.19.245.131 104.154.136.44 22:31061/TCP,8080:30037/TCP,55555:31723/TCP 2m
80+
NAME READY STATUS RESTARTS AGE
81+
po/XXX-XXX-solace-0 1/1 Running 0 2m
82+
NAME STATUS VOLUME CAPACITY ACCESS MODES STORAGECLASS AGE
83+
pvc/data-XXX-XXX-solace-0 Bound pvc-63ce3ad3-cae1-11e7-ae62-42010a800120 30Gi RWO XXX-XXX-standard 2
84+
85+
86+
prompt:~$ kubectl describe service XXX-XXX-solace
87+
Name: XXX-XXX-solace
8888
Namespace: default
89-
Labels: app=solace-kubernetes
90-
chart=solace-kubernetes-0.1.0
89+
Labels: app=solace
90+
chart=solace-0.1.0
9191
heritage=Tiller
9292
release=XXX-XXX
9393
Annotations: <none>
94-
Selector: app=solace-kubernetes,release=XXX-XXX
94+
Selector: app=solace,release=XXX-XXX
9595
Type: LoadBalancer
9696
IP: 10.19.245.131
9797
LoadBalancer Ingress: 104.154.136.44
@@ -105,7 +105,7 @@ Endpoints: 10.16.0.12:22
105105

106106
Note here serveral IPs and port. In this example 104.154.136.44 is the external IP to use.
107107

108-
Note: when using Minikube, there is no integrated LoadBalancer. For a workaround, you can use `minikube service XXX-XXX-solace-kubernetes` to expose the service.
108+
Note: when using Minikube, there is no integrated LoadBalancer. For a workaround, you can use `minikube service XXX-XXX-solace` to expose the service.
109109

110110
## Gaining admin access to the VMR
111111

@@ -124,7 +124,7 @@ Copyright 2004-2017 Solace Corporation. All rights reserved.
124124

125125
This is the Community Edition of the Solace VMR.
126126

127-
XXX-XXX-solace-kubernetes-0>
127+
XXX-XXX-solace-0>
128128
```
129129

130130
For persons who are unfamiliar with the Solace mesage router or would prefer an administration application, the SolAdmin management application is available. For more information on SolAdmin see the [SolAdmin page](http://dev.solace.com/tech/soladmin/). To get SolAdmin, visit the Solace [download page](http://dev.solace.com/downloads/) and select OS version desired. Management IP will be the Public IP associated with youe GCE instance and port will be 8080 by default.

scripts/start_vmr.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,7 @@ echo "`date` INFO: BUILD HELM CHARTS"
7676
echo "#############################################################"
7777
git clone https://github.com/SolaceProducts/solace-kubernetes-quickstart
7878
cd solace-kubernetes-quickstart
79-
git checkout 68545
80-
cd helm
79+
cd solace
8180

8281
IFS=':' read -ra container_array <<< "$solace_image"
8382
sed ${sed_options} "s:SOLOS_IMAGE_REPO:${container_array[0]}:g" values.yaml
@@ -92,6 +91,6 @@ helm install . -f values.yaml
9291

9392
echo "`date` INFO: DEPLOY VMR COMPLETE"
9493
echo "#############################################################"
95-
echo "`date` INFO: View status with 'kubectl get statefulset,svc,pods,pvc'"
94+
echo "`date` INFO: View status with 'kubectl get statefulset,svc,pods,pvc,pv'"
9695

9796

helm/Chart.yaml renamed to solace/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v1
22
description: A Helm chart for Kubernetes
3-
name: solace-kubernetes
3+
name: solace
44
version: 0.1.0
55
icon: https://dev.solace.com/wp-content/uploads/2016/10/solace-logo-white.png
66
maintainers:
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)