Skip to content

Commit

Permalink
Prepare docs for 1.5.5 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
tamalsaha committed Apr 19, 2017
1 parent fe7f99f commit 0a7da39
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Following resources are used in Searchlight
| Icingaweb2 | 2.1.2 |
| Monitoring Plugins | 2.1.2 |
| Postgres | 9.5 |
| Searchlight Controller | 1.5.4 |
| Searchlight Controller | 1.5.5 |

## Features

Expand Down
4 changes: 2 additions & 2 deletions docs/user-guide/deployment-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ See Icinga2 [Deployment Guide](icinga2/deployment.md).

Run following command to deploy Icinga2
```sh
curl https://raw.githubusercontent.com/appscode/searchlight/1.5.4/hack/deploy/icinga2/run.sh | bash
curl https://raw.githubusercontent.com/appscode/searchlight/1.5.5/hack/deploy/icinga2/run.sh | bash
```

> Make sure you have set notifier to send notifications. Check [this](icinga2/deployment.md#create-deployment).
Expand All @@ -48,5 +48,5 @@ Searchlight Controller is used to communicate with Icinga2 API. To set an alert,

```sh
# Create Deployment
kubectl apply -f https://raw.githubusercontent.com/appscode/searchlight/1.5.4/hack/deploy/searchlight/deployment.yaml
kubectl apply -f https://raw.githubusercontent.com/appscode/searchlight/1.5.5/hack/deploy/searchlight/deployment.yaml
```
2 changes: 1 addition & 1 deletion docs/user-guide/hostfacts/deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ You can ignore SSL when Kubernetes is running in private network like GCE, AWS.
Download `hostfacts` and add binary in `/usr/bin`

```sh
curl -G https://cdn.appscode.com/binaries/hostfacts/1.5.4/hostfacts-linux-amd64 -o /usr/bin/hostfacts
curl -G https://cdn.appscode.com/binaries/hostfacts/1.5.5/hostfacts-linux-amd64 -o /usr/bin/hostfacts
# Change access permissions for hostfacts binary
chmod +x /usr/bin/hostfacts
Expand Down
6 changes: 3 additions & 3 deletions docs/user-guide/icinga2/deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,14 @@ If we don't set keys for notifier, notifications will be ignored.
Substitute ENV and deploy secret
```sh
# Deploy Secret
curl https://raw.githubusercontent.com/appscode/searchlight/1.5.4/hack/deploy/icinga2/secret.yaml |
curl https://raw.githubusercontent.com/appscode/searchlight/1.5.5/hack/deploy/icinga2/secret.yaml |
envsubst | kubectl apply -f -
```

###### Create Service
```sh
# Create Service
kubectl apply -f https://raw.githubusercontent.com/appscode/searchlight/1.5.4/hack/deploy/icinga2/service.yaml
kubectl apply -f https://raw.githubusercontent.com/appscode/searchlight/1.5.5/hack/deploy/icinga2/service.yaml
```

###### Create Deployment
Expand All @@ -84,7 +84,7 @@ To use notifier we need to set some environment variables. See following links t

```sh
# Create Deployment
kubectl apply -f https://raw.githubusercontent.com/appscode/searchlight/1.5.4/hack/deploy/icinga2/deployment.yaml
kubectl apply -f https://raw.githubusercontent.com/appscode/searchlight/1.5.5/hack/deploy/icinga2/deployment.yaml
```

### Login
Expand Down
4 changes: 2 additions & 2 deletions hack/chart/searchlight/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ The following tables lists the configurable parameters of the Searchlight chart
| Parameter | Description | Default |
| ----------------------- | ---------------------------------- | --------------------------|
| `appscodeicinga.icinga.image` | Icinga container image to run | `appscode/icinga` |
| `appscodeicinga.icinga.imageTag` | Icinga container image tag to run | `1.5.4-k8s` |
| `appscodeicinga.icinga.imageTag` | Icinga container image tag to run | `1.5.5-k8s` |
| `appscodeicinga.icinga.apiPort` | api port for Icinga container | `5665` |
| `appscodeicinga.icinga.webPort` | web port for Icinga container | `60006` |
| `appscodeicinga.ido.image` | ido container image to run | `appscode/postgress` |
Expand All @@ -52,4 +52,4 @@ The following tables lists the configurable parameters of the Searchlight chart
| `appscodeicinga.webTargetPort` | Icinga service target port for web | `80` |
| `appscodesearchlight.image` | Searchlight image to run | `appscode/searchlight` |
| `appscodesearchlight.imagePullPolicy` | Searchlight image pull policy | `Always` |
| `appscodesearchlight.imageTag` | Searchlight image tag to run | `1.5.4` |
| `appscodesearchlight.imageTag` | Searchlight image tag to run | `1.5.5` |
4 changes: 2 additions & 2 deletions hack/chart/searchlight/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ appscodeicinga:

icinga:
image: appscode/icinga
imageTag: 1.5.4-k8s
imageTag: 1.5.5-k8s
apiPort: 5665
webPort: 60006

Expand Down Expand Up @@ -118,4 +118,4 @@ appscodesearchlight:
## Searchlight image tag
##

imageTag: 1.5.4
imageTag: 1.5.5
2 changes: 1 addition & 1 deletion hack/deploy/icinga2/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
run: appscode-icinga
spec:
containers:
- image: appscode/icinga:1.5.4-k8s
- image: appscode/icinga:1.5.5-k8s
name: icinga
ports:
- containerPort: 5665
Expand Down
6 changes: 3 additions & 3 deletions hack/deploy/icinga2/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,13 @@ pushd $certificate_dir
popd

# Deploy Secret
curl https://raw.githubusercontent.com/appscode/searchlight/1.5.4/hack/kubernetes/icinga2/secret.yaml |envsubst | kubectl apply -f -
curl https://raw.githubusercontent.com/appscode/searchlight/1.5.5/hack/kubernetes/icinga2/secret.yaml |envsubst | kubectl apply -f -

# Create Service
kubectl apply -f https://raw.githubusercontent.com/appscode/searchlight/1.5.4/hack/kubernetes/icinga2/service.yaml
kubectl apply -f https://raw.githubusercontent.com/appscode/searchlight/1.5.5/hack/kubernetes/icinga2/service.yaml

# Create Deployment
kubectl apply -f https://raw.githubusercontent.com/appscode/searchlight/1.5.4/hack/kubernetes/icinga2/deployment.yaml
kubectl apply -f https://raw.githubusercontent.com/appscode/searchlight/1.5.5/hack/kubernetes/icinga2/deployment.yaml


#To login into Icingaweb2, use following authentication information:
Expand Down
2 changes: 1 addition & 1 deletion hack/deploy/searchlight/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ spec:
- args:
- --icinga-secret-name=appscode-icinga
- --icinga-secret-namespace=kube-system
image: appscode/searchlight:1.5.4
image: appscode/searchlight:1.5.5
imagePullPolicy: Always
name: appscode-searchlight

0 comments on commit 0a7da39

Please sign in to comment.