Skip to content

Commit

Permalink
version 0.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
sebt3 committed Feb 9, 2024
1 parent b4d83cb commit d1165e0
Show file tree
Hide file tree
Showing 51 changed files with 1,384 additions and 694 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@
!/front/components/core/*
!/front/components/navigation/*
!/front/components/charts/*
!/front/components/vynil/DistribStatus.vue
!/front/components/vynil/InstallStatus.vue
!/front/components/vynil/InstallView.vue
!/front/components/vynil/PackageList.vue
!/front/components/vynil/CategoryList.vue
Expand Down
4 changes: 2 additions & 2 deletions back/resolvers/vynil/Package.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ export const queries = {

export const resolvers = {
vynilPackage: {
providedByCategory: async (parent) => {
consumeCategory: async (parent) => {
return {
name: parent.category,
};
},
providedByDistrib: async (parent) => {
consumeDistrib: async (parent) => {
const lst = (await distribQueries.vynilDistrib(parent,{})).filter((i) => i.metadata.name == parent.distrib)
if (lst.length>0) return lst[0];
return {
Expand Down
4 changes: 2 additions & 2 deletions back/schema/core.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ type vynilPackage {
name: String!
commit_id: ID!
description: String
providedByCategory: vynilCategory!
providedByDistrib: vynilDistrib!
consumeCategory: vynilCategory!
consumeDistrib: vynilDistrib!
options: JSONObject!
}
type Query {
Expand Down
39 changes: 26 additions & 13 deletions data/cnpg.json
Original file line number Diff line number Diff line change
Expand Up @@ -8585,63 +8585,71 @@
"short": "Cluster",
"targetGroup": "k8s",
"targetShort": "Pod",
"algo": "k8s"
"algo": "k8s",
"path": null
},
{
"type": "child",
"group": "cnpg",
"short": "Cluster",
"targetGroup": "k8s",
"targetShort": "Secret",
"algo": "k8s"
"algo": "k8s",
"path": null
},
{
"type": "child",
"group": "cnpg",
"short": "Cluster",
"targetGroup": "k8s",
"targetShort": "Service",
"algo": "k8s"
"algo": "k8s",
"path": null
},
{
"type": "child",
"group": "cnpg",
"short": "Cluster",
"targetGroup": "k8s",
"targetShort": "ServiceAccount",
"algo": "k8s"
"algo": "k8s",
"path": null
},
{
"type": "child",
"group": "cnpg",
"short": "Cluster",
"targetGroup": "k8s",
"targetShort": "PodDisruptionBudget",
"algo": "k8s"
"algo": "k8s",
"path": null
},
{
"type": "child",
"group": "cnpg",
"short": "Cluster",
"targetGroup": "k8s",
"targetShort": "Role",
"algo": "k8s"
"algo": "k8s",
"path": null
},
{
"type": "child",
"group": "cnpg",
"short": "Cluster",
"targetGroup": "k8s",
"targetShort": "RoleBinding",
"algo": "k8s"
"algo": "k8s",
"path": null
},
{
"type": "child",
"group": "cnpg",
"short": "Cluster",
"targetGroup": "k8s",
"targetShort": "PersistentVolumeClaim",
"algo": "k8s"
"algo": "k8s",
"path": null
}
],
"resolvers": [
Expand Down Expand Up @@ -21202,39 +21210,44 @@
"short": "Pooler",
"targetGroup": "k8s",
"targetShort": "Service",
"algo": "k8s"
"algo": "k8s",
"path": null
},
{
"type": "child",
"group": "cnpg",
"short": "Pooler",
"targetGroup": "k8s",
"targetShort": "ServiceAccount",
"algo": "k8s"
"algo": "k8s",
"path": null
},
{
"type": "child",
"group": "cnpg",
"short": "Pooler",
"targetGroup": "k8s",
"targetShort": "Deployment",
"algo": "k8s"
"algo": "k8s",
"path": null
},
{
"type": "child",
"group": "cnpg",
"short": "Pooler",
"targetGroup": "k8s",
"targetShort": "Role",
"algo": "k8s"
"algo": "k8s",
"path": null
},
{
"type": "child",
"group": "cnpg",
"short": "Pooler",
"targetGroup": "k8s",
"targetShort": "RoleBinding",
"algo": "k8s"
"algo": "k8s",
"path": null
}
],
"resolvers": [
Expand Down
Loading

0 comments on commit d1165e0

Please sign in to comment.