summaryrefslogtreecommitdiffstats
path: root/kubernetes/so/charts/so-vfc-adapter
AgeCommit message (Expand)AuthorFilesLines
2018-10-24Sync docker tags with release manifestGary Wu1-1/+1
2018-10-18Sync docker tags with release manifestGary Wu1-1/+1
2018-10-15so-minitoring po startup issueRamesh Parthasarathy1-1/+1
2018-10-12Added missing maria db dependenciesjmac2-2/+36
2018-10-04SO create service instance failsRamesh Parthasarathy1-1/+12
2018-09-25Updating charts to use common resource templateMandeep Khinda1-1/+1
2018-09-25adding unlimited resource limitMandeep Khinda1-0/+1
2018-09-24Update Chart versions to 3.0Mike Elliott1-1/+1
2018-09-20SO helm chart cleanupRamesh Parthasarathy1-29/+0
2018-09-19Do not mount certificates in SOAlexis de Talhouƫt2-7/+1
2018-09-19Backup Task -ConfigMap Labeling SOvaibhavjayas1-0/+10
2018-09-14SO override files to use apt kube dns addressRamesh Parthasarathy2-18/+3
2018-09-07Flavors defintion in resource limitvaibhav16dec2-9/+15
2018-09-06Fix from robot testing and resolve mergeBrian Freeman1-2/+2
2018-09-05helm chart for so containersRamesh Parthasarathy6-0/+326
or: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */ }
/*-
 * ============LICENSE_START=======================================================
 * SDC
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 * Modifications Copyright (C) 2018 Huawei Intellectual Property. All rights reserved.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */

import {ContentAfterLastDotPipe} from "./contentAfterLastDot.pipe";
import {SearchFilterPipe} from "./searchFilter.pipe";
import {KeysPipe} from "./keys.pipe";
import {GroupByPipe} from "./groupBy.pipe";
import {ResourceNamePipe} from "./resource-name.pipe";
import {NgModule} from "@angular/core";
import {SafeUrlSanitizerPipe} from "./safeUrlSanitizer.pipe";
import {EntityFilterPipe} from "./entity-filter.pipe";
import {KeyValuePipe} from "./key-value.pipe";
import {PropertiesOrderByPipe} from "./properties-order-by.pipe";
import {OrderByPipe} from "./order-by.pipe";

@NgModule({
    declarations: [
        ContentAfterLastDotPipe,
        GroupByPipe,
        KeysPipe,
        SafeUrlSanitizerPipe,
        SearchFilterPipe,
        ResourceNamePipe,
        EntityFilterPipe,
        KeyValuePipe,
        PropertiesOrderByPipe,
        OrderByPipe
    ],
    exports: [
        ContentAfterLastDotPipe,
        GroupByPipe,
        KeysPipe,
        SafeUrlSanitizerPipe,
        SearchFilterPipe,
        ResourceNamePipe,
        EntityFilterPipe,
        PropertiesOrderByPipe,
        OrderByPipe,
        KeyValuePipe
    ],
    providers: [
        ContentAfterLastDotPipe,
        GroupByPipe,
        KeysPipe,
        SafeUrlSanitizerPipe,
        SearchFilterPipe,
        ResourceNamePipe,
        EntityFilterPipe,
        KeyValuePipe
    ]
})

export class GlobalPipesModule {}