Skip to content

Commit 4f39fa4

Browse files
committed
Update to documentation
1 parent 30d29ac commit 4f39fa4

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
[![Build Status][xld-nginx-plus-plugin-travis-image]][xld-nginx-plus-plugin-travis-url]
44
[![Codacy Badge][xld-nginx-plus-plugin-codacy-image]][xld-nginx-plus-plugin-codacy-url]
5-
[![Codeclimate Badge][xld-nginx-plus-plugin-codeclimate-image]][xld-nginx-plus-plugin-codeclimate-url]
65
[![License: MIT][xld-nginx-plus-plugin-license-image]][xld-nginx-plus-plugin-license-url]
76
![Github All Releases][xld-nginx-plus-plugin-downloads-image]
87

@@ -45,7 +44,7 @@ Note: This is the Nginx Plus Server and not a member of the Nginx Plus Upstream
4544

4645
![NginxPlusServerConfiguration](images/configureNginxPlusServer.jpg)
4746

48-
### Configure servers that are members of an Nginx Plus upstream group
47+
### Create and Configure the Servers that are Members of an Nginx Plus Upstream Group
4948

5049
![UpstreamMemberConfig](images/configureMemberServers.jpg)
5150

@@ -89,8 +88,6 @@ Example of a successful deployment, showing steps:
8988
[xld-nginx-plus-plugin-travis-url]: https://travis-ci.org/xebialabs-community/xld-nginx-plus-plugin
9089
[xld-nginx-plus-plugin-codacy-image]: https://api.codacy.com/project/badge/Grade/9fc1287ae6e64835ab2ea1696a9064c3
9190
[xld-nginx-plus-plugin-codacy-url]: https://www.codacy.com/app/ladamato/xld-nginx-plus-plugin?utm_source=github.com&utm_medium=referral&utm_content=xebialabs-community/xld-nginx-plus-plugin&utm_campaign=Badge_Grade
92-
[xld-nginx-plus-plugin-codeclimate-image]: https://api.codeclimate.com/v1/badges/2a6a489b550a2f6daa8a/maintainability
93-
[xld-nginx-plus-plugin-codeclimate-url]: https://codeclimate.com/github/xebialabs-community/xld-nginx-plus-plugin/maintainability
9491
[xld-nginx-plus-plugin-license-image]: https://img.shields.io/badge/License-MIT-yellow.svg
9592
[xld-nginx-plus-plugin-license-url]: https://opensource.org/licenses/MIT
9693
[xld-nginx-plus-plugin-downloads-image]: https://img.shields.io/github/downloads/xebialabs-community/xld-nginx-plus-plugin/total.svg

src/main/resources/nginxplus/rule.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,16 +44,15 @@ def generate_steps(containers, context):
4444
upstream_name = container.upstreamName
4545
api_version = container.apiVersion
4646
vn = container.nginxServer
47-
sick_step = steps.jython(description="Mark test [%s] as down in Nginx [%s], api version is [%s]" % (server_name, vn.name, api_version), order=5,
47+
sick_step = steps.jython(description="Mark [%s] as down in Nginx [%s], api version is [%s]" % (server_name, vn.name, api_version), order=5,
4848
script="nginxplus/down-server.py",
4949
jython_context={"server_name": server_name, "upstream_name": upstream_name, "api_version": api_version,
5050
"nginx_url": vn.url})
51-
health_step = steps.jython(description="Mark test [%s] as up in Nginx [%s], api version is [%s]" % (server_name, vn.name, api_version), order=95,
51+
health_step = steps.jython(description="Mark [%s] as up in Nginx [%s], api version is [%s]" % (server_name, vn.name, api_version), order=95,
5252
script="nginxplus/up-server.py",
5353
jython_context={"server_name": server_name, "upstream_name": upstream_name, "api_version": api_version,
5454
"nginx_url": vn.url})
5555
context.addStep(sick_step)
5656
context.addStep(health_step)
5757

58-
5958
generate_steps(extract_nginx_aware_containers(deltas), context)

0 commit comments

Comments
 (0)