-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from StackStorm-Exchange/feature/action/slb_se…
…rvice_group_member Added new action to change slb service-group member's configuration that have already been registered + α
- Loading branch information
Showing
4 changed files
with
72 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
--- | ||
name: update_slb_service_group_member | ||
pack: acos | ||
runner_type: python-script | ||
description: update a server to the ServiceGroup as a member | ||
enabled: true | ||
entry_point: ax_action_runner.py | ||
parameters: | ||
action: | ||
type: string | ||
immutable: true | ||
default: update | ||
object_path: | ||
type: string | ||
immutable: true | ||
default: slb.service_group.member | ||
one_target: | ||
type: boolean | ||
immutable: true | ||
default: true | ||
service_group_name: | ||
type: string | ||
description: the ServiceGroup name to register a member | ||
required: true | ||
server_name: | ||
type: string | ||
description: the name of server to update | ||
default: '' | ||
server_port: | ||
type: integer | ||
description: the port-number of server to update | ||
default: 80 | ||
status: | ||
type: boolean | ||
description: when 'True' is set, then statical data collection will be enabled | ||
enum: | ||
- True | ||
- False | ||
default: True | ||
member_state: | ||
type: boolean | ||
description: when 'True' is set, then member service port will be enabled | ||
enum: | ||
- True | ||
- False | ||
default: True | ||
appliance: | ||
type: string | ||
description: The appliance information to connect, which is specified at the 'appliance' parameter in the configuration. | ||
required: true | ||
specified_target: | ||
type: object | ||
description: "Specify the target dynamically, (key: 'target', 'api_version', 'userid', 'passwd')" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ keywords: | |
- load balancer | ||
- ADC | ||
- network | ||
version: 1.5.0 | ||
version: 1.6.0 | ||
author: Hiroyasu OHYAMA | ||
email: [email protected] | ||
python_versions: | ||
|