aboutsummaryrefslogtreecommitdiffstats
path: root/applications/guard/src/test/resources/test-policies.yaml
blob: 1ac7271cec3fa8e9607eb2dcc9f0d6ba4aea7b5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
tosca_definitions_version: tosca_simple_yaml_1_1_0
topology_template:
  policies:
    -
      frequency-default:
        type: onap.policies.controlloop.guard.common.FrequencyLimiter
        type_version: 1.0.0
        version: 1.0.0
        description: |
            This is the default APPC Restart frequency limiter policy for all control loops.
        metadata:
          policy-id: frequency-default
          policy-version: 1.0.0
        properties:
          actor: APPC
          operation: Restart
          timeWindow: 10
          timeUnits: minute
          limit: 1
    -
      frequency-loop-1:
        type: onap.policies.controlloop.guard.common.FrequencyLimiter
        type_version: 1.0.0
        version: 1.0.0
        description: |
            This frequency limiter is for APPC Restart on a specific control loop. It allows more restarts.
        metadata:
          policy-id: frequency-loop-1
          policy-version: 1.0.0
        properties:
          actor: APPC
          operation: Restart
          id: loop-1
          timeWindow: 10
          timeUnits: minute
          limit: 3
    -
      frequency-loop-3:
        type: onap.policies.controlloop.guard.common.FrequencyLimiter
        type_version: 1.0.0
        version: 1.0.0
        description: |
            This frequency limiter is for APPC Restart on a specific control loop. It allows
            NO restarts in a time frame.
        metadata:
          policy-id: frequency-loop-3
          policy-version: 1.0.0
        properties:
          actor: APPC
          operation: Restart
          timeRange:
            start_time: T00:00:00Z
            end_time: T08:00:00Z
          id: loop-3
          timeWindow: 8
          timeUnits: hour
          limit: 0
    -
      minmax-default:
        type: onap.policies.controlloop.guard.common.MinMax
        type_version: 1.0.0
        version: 1.0.0
        metadata:
          policy-id : minmax-default
          policy-version: 1.0.0
        properties:
          actor: SO
          operation: VF Module Create
          target: vf-module-id-1
          min: 1
          max: 5
    -
      minmax-vfmodule-loop2:
        type: onap.policies.controlloop.guard.common.MinMax
        type_version: 1.0.0
        version: 1.0.0
        metadata:
          policy-id : minmax-vfmodule-loop2
          policy-version: 1.0.0
        properties:
          actor: SO
          operation: VF Module Create
          id: loop-2
          target: vf-module-id-2
          min: 3
          max: 6
    -
      blacklist-1:
        type: onap.policies.controlloop.guard.common.Blacklist
        type_version: 1.0.0
        version: 1.0.0
        metadata:
          policy-id : blacklist-1
          policy-version: 1.0.0
        properties:
          actor: APPC
          operation: Migrate
          id: loop-5
          blacklist:
              - vnf1
              - vnf2
    -
      unknown-1:
        type: onap.policies.controlloop.guard.common.Unknown
        type_version: 1.0.0
        version: 1.0.0
        metadata:
          policy-id : unknown-1
          policy-version: 1.0.0
        properties:
          actor: APPC
          operation: Migrate
          id: loop-5
          blacklist:
              - vnf1
              - vnf2