-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update private instance deployment config to use custom stat var info (…
- Loading branch information
Showing
5 changed files
with
118 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,3 +30,6 @@ configMapGenerator: | |
- name: ai-config | ||
files: | ||
- ai.yaml | ||
- name: memdb-config | ||
files: | ||
- memdb.json |
Empty file.
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,105 @@ | ||
{ | ||
"importName": "Feeding America", | ||
"provenanceUrl": "https://www.feedingamerica.org/", | ||
"dataDownloadUrl": "https://www.feedingamerica.org/", | ||
"rootSvg": "g/Feeding_America", | ||
"statVarGroups": { | ||
"g/Feeding_America": { | ||
"childStatVarGroups": [ | ||
{ | ||
"id": "g/Child_FoodInsecure", | ||
"specializedEntity": "Food Insecure Children" | ||
}, | ||
{ | ||
"id": "g/Person_FoodInsecure", | ||
"specializedEntity": "Food Insecure People" | ||
} | ||
], | ||
"childStatVars": [ | ||
{ | ||
"id": "Annual_FoodBudgetShortfall", | ||
"searchNames": ["Annual Food Budget Shortfall"], | ||
"displayName": "Annual Food Budget Shortfall" | ||
}, | ||
{ | ||
"id": "Mean_MealCost_Person_FoodSecure", | ||
"searchNames": ["Food Secure Person Mean Meal Cost"], | ||
"displayName": "Average Meal Cost for Food Secure Persons" | ||
} | ||
] | ||
}, | ||
"g/Child_FoodInsecure": { | ||
"childStatVarGroups": [ | ||
{ | ||
"id": "g/Child_FoodInsecure_ChildNutritionBenefits", | ||
"specializedEntity": "Child Nutrition Benefits" | ||
} | ||
], | ||
"childStatVars": [ | ||
{ | ||
"id": "Count_Child_FoodInsecure", | ||
"searchNames": ["Count of Food Insecure Child"], | ||
"displayName": "Population" | ||
} | ||
] | ||
}, | ||
"g/Child_FoodInsecure_ChildNutritionBenefits": { | ||
"childStatVars": [ | ||
{ | ||
"id": "Count_Child_FoodInsecure_EligibleForManyChildNutritionBenefits", | ||
"searchNames": [ | ||
"Count of Child Food Insecure Eligible for Many Child Nutrition Benefits" | ||
], | ||
"displayName": "Eligible" | ||
}, | ||
{ | ||
"id": "Count_Child_FoodInsecure_IneligibleForChildNutritionBenefits", | ||
"searchNames": [ | ||
"Count of Child Food Insecure Ineligible for Many Child Nutrition Benefits" | ||
], | ||
"displayName": "Ineligible" | ||
} | ||
] | ||
}, | ||
"g/Person_FoodInsecure": { | ||
"childStatVarGroups": [ | ||
{ | ||
"id": "g/Person_FoodInsecure_FederalBenefits", | ||
"specializedEntity": "Federal Benefits" | ||
} | ||
], | ||
"childStatVars": [ | ||
{ | ||
"id": "Count_Person_FoodInsecure", | ||
"searchNames": ["Count of Person Food Insecure"], | ||
"displayName": "Population" | ||
} | ||
] | ||
}, | ||
"g/Person_FoodInsecure_FederalBenefits": { | ||
"childStatVars": [ | ||
{ | ||
"id": "Count_Person_FoodInsecure_EligibleForAllFederalBenefits", | ||
"searchNames": [ | ||
"Count of Person with Food Insecure Eligible for All Federal Benefits" | ||
], | ||
"displayName": "Eligible for All Federal Benefits" | ||
}, | ||
{ | ||
"id": "Count_Person_FoodInsecure_EligibleForSomeFederalBenefits", | ||
"searchNames": [ | ||
"Count of Person with Food Insecure Eligible for Some Federal Benefits" | ||
], | ||
"displayName": "Eligible for Some Federal Benefits" | ||
}, | ||
{ | ||
"id": "Count_Person_FoodInsecure_IneligibleForFederalBenefits", | ||
"searchNames": [ | ||
"Count of Person with Food Insecure Ineligible for Federal Benefits" | ||
], | ||
"displayName": "Ineligible for Federal Benefits" | ||
} | ||
] | ||
} | ||
} | ||
} |