Unverified Commit e37e3c2e authored by Kevin Di Lallo's avatar Kevin Di Lallo Committed by GitHub
Browse files

Merge pull request #329 from dilallkx/kd_sp47_dev_gc

Garbage Collection package
parents 2fb942d9 bfbc47d2
Loading
Loading
Loading
Loading
+31 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

version: 1.8.2
version: 1.8.3
repo:
  name: AdvantEDGE

@@ -152,6 +152,31 @@ repo:
        # archive object store configuration secret
        secret: meep-thanos-archive-objstore-config

    # Garbage Collection configuration
    gc:
      # enable garbage collection
      enabled: true
      # garbage collection interval (duration string)
      interval: 4h
      # run garbage collection on start
      run-on-start: true
      # Redis configuration
      redis:
        # enable redis garbage collection
        enabled: true
      # Influx configuration
      influx:
        # enable influx garbage collection
        enabled: false
        # list of databases that must not be removed
        exceptions:
        #   - my_db_to_keep
        #   - my_other_db_to_keep
      # Postgis configuration
      postgis:
        # enable postgis garbage collection
        enabled: false

    # Default monitoring dashboards
    dashboards:
      network-metrics-point-to-point: dashboards/network-metrics-point-to-point.json
@@ -943,6 +968,11 @@ repo:
        src: go-packages/meep-data-model
        # supports linting
        lint: true
      meep-gc:
        # location of source code
        src: go-packages/meep-gc
        # supports linting
        lint: true
      meep-gis-asset-mgr:
        # location of source code
        src: go-packages/meep-gis-asset-mgr
+1 −1
Original line number Diff line number Diff line
@@ -1804,7 +1804,7 @@ prometheus:

    ## How long to retain metrics
    ##
    retention: 100d
    retention: 10d

    ## Maximum size of metrics
    ##
+1 −1
Original line number Diff line number Diff line
@@ -47,7 +47,7 @@ spec:
          env:
            {{- range $key, $value := .Values.image.env }}
            - name: {{ $key }}
              value: {{ $value | quote }}
              value: {{ $value }}
            {{- end }}
            {{- range $key, $value := .Values.image.envSecret }}
            - name: {{ $key }}
+2 −0
Original line number Diff line number Diff line
@@ -1680,6 +1680,7 @@ func newMobilityProcedureSubCfg(sub *MobilityProcedureSubscription, subId string
		Id:                  subId,
		AppId:               appId,
		Type:                MOBILITY_PROCEDURE_SUBSCRIPTION,
		NotifType:           MOBILITY_PROCEDURE_NOTIFICATION,
		Self:                sub.Links.Self.Href,
		NotifyUrl:           sub.CallbackReference,
		ExpiryTime:          expiryTime,
@@ -1700,6 +1701,7 @@ func newAdjAppInfoSubCfg(sub *AdjacentAppInfoSubscription, subId string, appId s
		Id:                  subId,
		AppId:               appId,
		Type:                ADJACENT_APP_INFO_SUBSCRIPTION,
		NotifType:           ADJACENT_APP_INFO_NOTIFICATION,
		Self:                sub.Links.Self.Href,
		NotifyUrl:           sub.CallbackReference,
		ExpiryTime:          expiryTime,
+1 −0
Original line number Diff line number Diff line
@@ -981,6 +981,7 @@ func newAppTerminationNotifSubCfg(sub *AppTerminationNotificationSubscription, s
		Id:                  subId,
		AppId:               appId,
		Type:                APP_TERMINATION_NOTIF_SUB_TYPE,
		NotifType:           APP_TERMINATION_NOTIF_TYPE,
		Self:                sub.Links.Self.Href,
		NotifyUrl:           sub.CallbackReference,
		ExpiryTime:          nil,
Loading